From 9a951acd601d70d7228f0fe0c33ed145a2d7468d Mon Sep 17 00:00:00 2001 From: Alexander Scheibler <60936422+alexanderscheibler@users.noreply.github.com> Date: Sat, 2 Nov 2024 20:21:19 -0300 Subject: [PATCH] fix: adjust webmanifest location, improve accessibility for Apple --- app/globals.css | 7 +++++++ {app => public}/manifest.webmanifest | 0 2 files changed, 7 insertions(+) rename {app => public}/manifest.webmanifest (100%) diff --git a/app/globals.css b/app/globals.css index 406ac36..d86887f 100644 --- a/app/globals.css +++ b/app/globals.css @@ -8,6 +8,13 @@ --background-end-rgb: 0, 0, 0; } +@supports (font: -apple-system-body) { + html { + /* Enable dynamic text sizing on Apple devices for accessibility */ + font: -apple-system-body; + } +} + body { color: rgb(var(--foreground-rgb)); background: linear-gradient( diff --git a/app/manifest.webmanifest b/public/manifest.webmanifest similarity index 100% rename from app/manifest.webmanifest rename to public/manifest.webmanifest