From b4e6631f0713c5550cff8e25a501d2905922bfb8 Mon Sep 17 00:00:00 2001 From: Rei Date: Wed, 18 Jan 2023 17:02:46 +0100 Subject: [PATCH] layout fix --- layouts/MainLayout.tsx | 4 ++-- styles/globals.css | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/layouts/MainLayout.tsx b/layouts/MainLayout.tsx index 29f5e54..3c92e14 100644 --- a/layouts/MainLayout.tsx +++ b/layouts/MainLayout.tsx @@ -3,9 +3,9 @@ import { Navbar } from "../components/Navbar"; export const MainLayout = ({ children }: PropsWithChildren) => { return ( -
+
-
{children}
+
{children}
); }; diff --git a/styles/globals.css b/styles/globals.css index 13c16c2..2485337 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -7,7 +7,7 @@ html { scroll-behavior: smooth; } body { - @apply dark:bg-gradient-dark dark:text-primary-text bg-slate-100 text-gradient-dark xl:w-2/3 w-11/12 mx-auto; + @apply dark:bg-gradient-dark dark:text-primary-text bg-slate-100 text-gradient-dark xl:w-2/3 w-full mx-auto; } .prose {