diff --git a/src/app/globals.css b/src/app/globals.css index 39eb2e5..8ddd9e8 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -2,12 +2,8 @@ @tailwind components; @tailwind utilities; -html { - @apply bg-slate-950 text-slate-50 w-screen h-screen -} - body { - @apply w-full h-full + @apply bg-slate-950 text-slate-50 w-screen h-screen } main { diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 77fc325..34328c7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,5 @@ import './globals.css' import type { Metadata } from 'next' -import { Inter } from 'next/font/google' - -const inter = Inter({ subsets: ['latin'] }) export const metadata: Metadata = { title: "Ivan Dimitrov", @@ -16,7 +13,7 @@ export default function RootLayout({ }) { return ( - {children} + {children} ) }