fix layout

This commit is contained in:
2024-08-15 17:38:56 +02:00
parent 171539eacf
commit c393b2085f

View File

@@ -2,12 +2,10 @@ import { Head, Html, Main, NextScript } from "next/document"
export default function Document() {
return (
<Html lang="en" className={"h-screen bg-zinc-950"}>
<Html lang="en" className={"h-screen bg-background"}>
<Head />
<body className={"grid h-full grid-rows-[auto_1fr] overflow-hidden"}>
<Main />
<NextScript />
</body>
<Main />
<NextScript />
</Html>
)
}