Skip to content

Commit

Permalink
Merge pull request #86 from benscobie/fix-table-last-result
Browse files Browse the repository at this point in the history
Fix layout centering
  • Loading branch information
benscobie authored Aug 5, 2024
2 parents 8f989ff + 5bc399c commit 7915bb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function Layout({ children, className }: LayoutProps) {
return (
<div className={className}>
<Header />
<main className="container mx-auto my-8">{children}</main>
<main className="container mx-auto max-w-7xl my-8">{children}</main>
<Footer />
</div>
);
Expand Down

0 comments on commit 7915bb8

Please sign in to comment.