Skip to content

Commit

Permalink
fix: update SectionContainer max-width for improved layout
Browse files Browse the repository at this point in the history
  • Loading branch information
geekskai committed Sep 16, 2024
1 parent b11d6b0 commit b29d140
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions components/SectionContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,5 @@ interface Props {
}

export default function SectionContainer({ children }: Props) {
return (
<section className="mx-auto max-w-3xl px-4 sm:px-6 xl:max-w-5xl xl:px-0">{children}</section>
)
return <section className="mx-auto max-w-7xl px-4 sm:px-6 xl:px-0">{children}</section>
}

0 comments on commit b29d140

Please sign in to comment.