website refactor

This commit is contained in:
2026-01-19 21:30:36 +01:00
parent 5715e35790
commit a0db155427
23 changed files with 582 additions and 147 deletions

View File

@@ -57,6 +57,7 @@
color: var(--color-text-high);
line-height: 1.5;
overscroll-behavior: none;
min-height: 100vh;
}
::selection {

View File

@@ -75,11 +75,9 @@ export default async function RootLayout({
<head>
<meta name="mobile-web-app-capable" content="yes" />
</head>
<body className="antialiased overflow-x-hidden">
<body className="antialiased overflow-hidden h-screen">
<AppWrapper enabledFlags={enabledFlags}>
<RootAppShellTemplate>
{children}
</RootAppShellTemplate>
<RootAppShellTemplate>{children}</RootAppShellTemplate>
</AppWrapper>
</body>
</html>