fix mobile spacing and scrolling

This commit is contained in:
Gavin McDonald
2025-07-08 08:24:40 -04:00
parent 62c3b7b557
commit 11245bf4d8
5 changed files with 6 additions and 6 deletions

View File

@@ -25,8 +25,8 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en" className={`${eagleLake.variable} antialiased`}>
<body className={`${eagleLake.className} antialiased`}>
<html lang="en" className={`${eagleLake.variable} antialiased overscroll-none`}>
<body className={`${eagleLake.className} antialiased h-dvh`}>
<AppProvider>{children}</AppProvider>
</body>
</html>