Skip to content

Commit

Permalink
Changed margin top to the main layout (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
Akshaydotcom authored Sep 16, 2024
1 parent 9f1081d commit 6775751
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Layout/MainLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Navbar from './Navbar';
const MainLayout = ({ children }: PropsWithChildren) => (
<>
<Navbar />
<section className="min-h-[80vh] p-4 container mx-auto mt-32 lg:mt-16">
<section className="min-h-[80vh] p-4 container mx-auto mt-16">
{children}
</section>
<Footer />
Expand Down

0 comments on commit 6775751

Please sign in to comment.