Merge pull request #251 from Notplayingallday383/patch-4

patch: fix scaling on mobile
This commit is contained in:
rift 2024-04-24 18:21:55 -05:00 committed by GitHub
commit 981c5bee82
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,7 +4,7 @@ export function HeaderRoute(props: { children: any }) {
return (
<div className="flex h-screen flex-col">
<Header />
<div className="flex-1">
<div className="flex-1 overflow-y-auto overflow-x-hidden">
<main className="h-full">{props.children}</main>
</div>
</div>