padding fix
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
rei
2022-12-29 01:56:00 +01:00
parent ba2edb6c38
commit 446c4a4241
5 changed files with 8 additions and 8 deletions

View File

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