This commit is contained in:
Ivan Dimitrov 2023-11-07 17:58:02 +02:00
parent 933115aa97
commit 7b372e88f5
2 changed files with 2 additions and 9 deletions

View File

@ -2,12 +2,8 @@
@tailwind components; @tailwind components;
@tailwind utilities; @tailwind utilities;
html {
@apply bg-slate-950 text-slate-50 w-screen h-screen
}
body { body {
@apply w-full h-full @apply bg-slate-950 text-slate-50 w-screen h-screen
} }
main { main {

View File

@ -1,8 +1,5 @@
import './globals.css' import './globals.css'
import type { Metadata } from 'next' import type { Metadata } from 'next'
import { Inter } from 'next/font/google'
const inter = Inter({ subsets: ['latin'] })
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Ivan Dimitrov", title: "Ivan Dimitrov",
@ -16,7 +13,7 @@ export default function RootLayout({
}) { }) {
return ( return (
<html lang="en"> <html lang="en">
<body className={inter.className}>{children}</body> <body>{children}</body>
</html> </html>
) )
} }