diff --git a/src/app/(main)/layout.tsx b/src/app/(main)/layout.tsx index dc7dccb..3936e8c 100644 --- a/src/app/(main)/layout.tsx +++ b/src/app/(main)/layout.tsx @@ -1,11 +1,10 @@ import Header from "@/components/header" -import { ReactNode } from "react" export default function RootLayout({ children }: LayoutProps<"/">) { return ( <>
-
+
{children}
diff --git a/src/app/(stats)/layout.tsx b/src/app/(stats)/layout.tsx index a91267c..72fc156 100644 --- a/src/app/(stats)/layout.tsx +++ b/src/app/(stats)/layout.tsx @@ -1,11 +1,10 @@ import Header from "@/components/header" -import { ReactNode } from "react" export default function StatsLayout({ children }: LayoutProps<"/">) { return ( <>
-
+
{children}
diff --git a/src/app/globals.css b/src/app/globals.css index c2dabbd..37ad29e 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -21,7 +21,6 @@ --color-mc-yellow: #FFFF55; --color-mc-white: #FFFFFF; --spacing-header: 3.75rem; - --spacing-content: calc(100vh - var(--spacing-header)); } :root {