From bc06e79c6c66459d6222297ac077cae56bf3e520 Mon Sep 17 00:00:00 2001 From: Joe Lothan Date: Wed, 27 May 2026 20:48:06 -0400 Subject: [PATCH] fix horizontal scroll on mobile --- frontend/index.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frontend/index.html b/frontend/index.html index d78851a..14d0ea7 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -33,9 +33,12 @@ } } + html, body { + overflow-x: hidden; + } + body { background: var(--bg); - overflow-x: hidden; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }