From 1c98116ff8c90b39d210aa4e1d2c1ea93639b926 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Thu, 28 Aug 2025 12:54:43 +0000 Subject: [PATCH] Fix horizontal overflow by setting hidden overflow-x on html and body Co-authored-by: strictlyethan --- app/globals.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/globals.css b/app/globals.css index 3409b987ed..a810a51c54 100644 --- a/app/globals.css +++ b/app/globals.css @@ -102,6 +102,11 @@ body { @apply bg-background text-foreground; } + + html, body { + overflow-x: hidden; + width: 100%; + } } .skeleton {