From 81d673a3e85001da079840a3ee7c1ab5f07654c5 Mon Sep 17 00:00:00 2001 From: Haewon Kam Date: Fri, 3 Apr 2026 23:54:32 +0900 Subject: [PATCH] fix: use overflow-y:overlay so scrollbar doesn't shift layout Removes scrollbar-gutter:stable which pushed content left. overlay scrollbar floats over content with zero layout impact. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/index.css | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/index.css b/src/index.css index 5845bb7..7457101 100644 --- a/src/index.css +++ b/src/index.css @@ -64,15 +64,12 @@ @layer base { html { overflow-x: clip; - scrollbar-gutter: stable; + overflow-y: overlay; } body { overflow-x: clip; @apply font-sans text-slate-800 bg-slate-50 antialiased; } - #root { - overflow-x: clip; - } h1, h2, h3, h4, h5, h6 { @apply font-serif text-primary-900;