From 50dff7b748ff655abaf72977baec9d91d1f3bdbe Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 24 Jan 2026 20:35:29 +0000 Subject: [PATCH] Fix white background at top of page on iOS Set html and body background color to match the dark theme, preventing the default white from showing through in the iOS status bar area. --- src/index.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.css b/src/index.css index 1ba2df0..0158595 100644 --- a/src/index.css +++ b/src/index.css @@ -57,6 +57,8 @@ } } +html, body { font-family: 'Outfit', sans-serif; + background-color: var(--color-primary-900); }