Skip to content

Commit

Permalink
fix(ui): update container padding
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonsaldan committed Dec 31, 2024
1 parent 2e229df commit d55d522
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/container.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export function Container({
children: React.ReactNode
}) {
return (
<div className={clsx(className, 'px-6 lg:px-8')}>
<div className={clsx(className, 'px-6 lg:px-20')}>
<div className="mx-auto max-w-2xl lg:max-w-7xl">{children}</div>
</div>
)
Expand Down

0 comments on commit d55d522

Please sign in to comment.