From eb058ab2e57ceb30417f7163f2ec548fc03eaa6b Mon Sep 17 00:00:00 2001 From: Haewon Kam Date: Sat, 4 Apr 2026 00:40:47 +0900 Subject: [PATCH] fix: add overflow-x:hidden to html to stop blob-caused layout shaking Animated blobs with translate+scale overflow their containers, causing horizontal scrollbar to flicker and page to jitter. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/index.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.css b/src/index.css index 327453a..022bc99 100644 --- a/src/index.css +++ b/src/index.css @@ -62,8 +62,8 @@ } @layer base { - /* Thin overlay scrollbar — doesn't consume layout space */ html { + overflow-x: hidden; scrollbar-width: thin; scrollbar-color: rgba(0,0,0,0.15) transparent; }