From 35779e45d9ca78998d120463eb9ed78e487e0671 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Guti=C3=A9rrez?= <35082514+alezmad@users.noreply.github.com> Date: Mon, 23 Feb 2026 00:28:09 +0000 Subject: [PATCH] fix: use overflow-x-clip on body to prevent horizontal overflow without breaking scroll MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove overflow-x-hidden from html (caused vertical scroll issues via CSS spec quirk) - Remove items-center/justify-center from body (TurboStarter auth defaults breaking full-width layout) - Use overflow-x-clip on body instead — clips overflowing glow elements without creating a scroll container Co-Authored-By: Claude Opus 4.6 --- apps/web/src/modules/common/layout/base.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/modules/common/layout/base.tsx b/apps/web/src/modules/common/layout/base.tsx index 109b2c2..08ba8da 100644 --- a/apps/web/src/modules/common/layout/base.tsx +++ b/apps/web/src/modules/common/layout/base.tsx @@ -31,10 +31,10 @@ interface BaseLayoutProps { export const BaseLayout = ({ children, locale }: BaseLayoutProps) => { return ( - + {children}