Skip to content

Commit 9834a60

Browse files
authored
Switch the sponsors section layout to grid (#2088)
1 parent 1a076a6 commit 9834a60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/conf/2025/components/sponsors.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export function Sponsors({ heading }: SponsorsProps) {
132132
<Tier
133133
key={tier.name}
134134
tier={tier}
135-
logoHeight={220 - sponsorTiers.indexOf(tier) * 24}
135+
logoHeight={236 - sponsorTiers.indexOf(tier) * 32}
136136
/>
137137
),
138138
)}
@@ -148,7 +148,7 @@ function Tier({ tier, logoHeight }: { tier: Tier; logoHeight: number }) {
148148
<ChevronRight className="shrink-0 translate-y-[-0.5px]" />
149149
{tier.name}
150150
</h3>
151-
<div className="flex min-w-[70%] flex-wrap justify-center gap-y-4">
151+
<div className="flex min-w-[70%] flex-wrap justify-center gap-y-4 lg:grid lg:w-full lg:grid-cols-2 lg:gap-4">
152152
{tier.items.map(({ link, icon: Icon, name }, i) => (
153153
<a
154154
key={i}

0 commit comments

Comments
 (0)