From caac2f22c51e0fb7e85b85535b284e4777e8fbfe Mon Sep 17 00:00:00 2001 From: Haewon Kam Date: Fri, 3 Apr 2026 23:30:27 +0900 Subject: [PATCH] fix: prevent horizontal overflow causing right-shifted layout Animated blur blobs and absolute-positioned elements were overflowing the viewport, creating a horizontal scrollbar that shifted all content. Added overflow-x: hidden to html and body. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/index.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/index.css b/src/index.css index 3c42999..751d2f5 100644 --- a/src/index.css +++ b/src/index.css @@ -62,6 +62,9 @@ } @layer base { + html, body { + overflow-x: hidden; + } body { @apply font-sans text-slate-800 bg-slate-50 antialiased; }