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) <noreply@anthropic.com>
claude/bold-hawking
Haewon Kam 2026-04-03 23:38:38 +09:00
parent a6bb31a093
commit 71c56783ed
1 changed files with 3 additions and 2 deletions

View File

@ -62,10 +62,11 @@
} }
@layer base { @layer base {
html, body { html {
overflow-x: hidden; overflow-x: clip;
} }
body { body {
overflow-x: clip;
@apply font-sans text-slate-800 bg-slate-50 antialiased; @apply font-sans text-slate-800 bg-slate-50 antialiased;
} }