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) <noreply@anthropic.com>
claude/bold-hawking
Haewon Kam 2026-04-04 00:40:47 +09:00
parent 9a141f3603
commit eb058ab2e5
1 changed files with 1 additions and 1 deletions

View File

@ -62,8 +62,8 @@
} }
@layer base { @layer base {
/* Thin overlay scrollbar — doesn't consume layout space */
html { html {
overflow-x: hidden;
scrollbar-width: thin; scrollbar-width: thin;
scrollbar-color: rgba(0,0,0,0.15) transparent; scrollbar-color: rgba(0,0,0,0.15) transparent;
} }