Skip to content

Commit

Permalink
fix(website): add more space to landing page on small screen sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
sdorra committed Sep 2, 2024
1 parent 3004a2d commit c5bdcc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/app/components/Section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ type SectionProps = Props & {

export function Section({ backgroundGrid, className, children }: SectionProps) {
return (
<section className={cn("p-10 relative", className)}>
<section className={cn("p-5 sm:p-10 relative", className)}>
{backgroundGrid ? <BackgroundGrid /> : null}
{children}
</section>
Expand Down

0 comments on commit c5bdcc4

Please sign in to comment.