small change
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
rei
2022-12-28 20:46:53 +01:00
parent 2c88713ab6
commit e46339c7a7
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ export const MainLayout = ({ children }: PropsWithChildren) => {
return (
<div className="w-11/12 lg:w-2/3 m-auto overflow-x-hidden">
<Navbar />
<main className="mx-10">{children}</main>
<main className="xl:p-10 p-6 xl:mt-10 mt-4">{children}</main>
</div>
);
};