Set fullscreen black background

This commit is contained in:
Austin Chen 2021-12-09 23:52:44 -08:00
parent f3b7fc11b6
commit 9bafc2b2e8

View File

@ -2,7 +2,7 @@ import { Html, Head, Main, NextScript } from 'next/document'
export default function Document() {
return (
<Html data-theme="dark">
<Html data-theme="dark" className="h-full bg-gray-900">
<Head>
<title>Mantic Markets</title>
@ -62,7 +62,7 @@ export default function Document() {
}}
/>
</Head>
<body>
<body className="h-full">
<Main />
<NextScript />
</body>