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
parent
a6bb31a093
commit
71c56783ed
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue