chore(layout): remove overflow

This commit is contained in:
Aslam H
2024-09-11 19:28:05 +07:00
parent 78d8b7c8d1
commit fb774f3814

View File

@@ -14,7 +14,7 @@ export default function PageLayout({ children }: { children: React.ReactNode })
{me._type !== "Anonymous" && <CommandPalette />}
<div className="flex min-w-0 flex-1 flex-col">
<main className="relative flex flex-auto flex-col place-items-stretch overflow-auto lg:my-2 lg:mr-2 lg:rounded-md lg:border">
<main className="relative flex flex-auto flex-col place-items-stretch lg:my-2 lg:mr-2 lg:rounded-md lg:border">
{children}
</main>
</div>