From 71c56783ed68565fa8aeb401cf5fd37ad48a30d0 Mon Sep 17 00:00:00 2001 From: Haewon Kam Date: Fri, 3 Apr 2026 23:38:38 +0900 Subject: [PATCH] fix: use overflow-x:clip instead of hidden to fully contain blur blobs overflow-x:hidden doesn't clip CSS blur() filter radius, allowing blurred blobs to still cause horizontal scrollbar. overflow-x:clip fully contains all rendered pixels including blur. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/index.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/index.css b/src/index.css index 751d2f5..a3409de 100644 --- a/src/index.css +++ b/src/index.css @@ -62,10 +62,11 @@ } @layer base { - html, body { - overflow-x: hidden; + html { + overflow-x: clip; } body { + overflow-x: clip; @apply font-sans text-slate-800 bg-slate-50 antialiased; }