style: styling

This commit is contained in:
원더 2021-01-06 10:04:24 +09:00
parent 420bc2cee3
commit b56231c3db
2 changed files with 4 additions and 2 deletions

View File

@ -48,7 +48,9 @@ export default function App({ Component, pageProps }: AppProps): JSX.Element {
<meta name="theme-color" content="#3366FF" /> <meta name="theme-color" content="#3366FF" />
</Head> </Head>
<Navbar /> <Navbar />
<Component {...pageProps} /> <div className='iu-is-the-best h-screen text-black dark:text-gray-100 bg-white dark:bg-discord-dark'>
<Component {...pageProps} />
</div>
<Footer /> <Footer />
</ThemeProvider> </ThemeProvider>
) )

View File

@ -28,7 +28,7 @@ class MyDocument extends Document {
}} }}
/> />
</Head> </Head>
<body className="iu h-screen text-black dark:text-gray-100 bg-white dark:bg-discord-dark"> <body className="h-screen text-black dark:text-gray-100 bg-white dark:bg-discord-dark">
<Main /> <Main />
<NextScript /> <NextScript />
</body> </body>