Skip to content

Commit

Permalink
feat: add horizontal padding to layout for improved spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
dada878 committed Jan 13, 2025
1 parent 8de283b commit cf2acc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/(website)/(pages)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { ReactNode } from "react";
export default function Layout({ children }: { children: ReactNode }) {
return (
<div className="flex w-full justify-center bg-background text-foreground">
<div className="flex w-full max-w-[90%] flex-col justify-center py-40 lg:max-w-[840px] desktop:max-w-[1120px]">
<div className="flex w-full max-w-[90%] flex-col justify-center px-4 py-40 lg:max-w-[840px] desktop:max-w-[1120px]">
{children}
</div>
</div>
Expand Down

0 comments on commit cf2acc2

Please sign in to comment.