stop odd x scroll

This commit is contained in:
Michael Freno
2026-01-06 00:51:17 -05:00
parent d2ee61b830
commit b118a62f83
2 changed files with 6 additions and 1 deletions

View File

@@ -227,6 +227,11 @@
scrollbar-width: none; scrollbar-width: none;
} }
html,
body {
overflow-x: hidden;
}
body { body {
background: var(--color-base); background: var(--color-base);
color: var(--color-text); color: var(--color-text);

View File

@@ -147,7 +147,7 @@ function AppLayout(props: { children: any }) {
return ( return (
<> <>
<div class="flex max-w-screen flex-row"> <div class="flex max-w-screen flex-row overflow-x-hidden">
<LeftBar /> <LeftBar />
<div <div
id="center-body" id="center-body"