We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a076a6 commit 9834a60Copy full SHA for 9834a60
1 file changed
src/app/conf/2025/components/sponsors.tsx
@@ -132,7 +132,7 @@ export function Sponsors({ heading }: SponsorsProps) {
132
<Tier
133
key={tier.name}
134
tier={tier}
135
- logoHeight={220 - sponsorTiers.indexOf(tier) * 24}
+ logoHeight={236 - sponsorTiers.indexOf(tier) * 32}
136
/>
137
),
138
)}
@@ -148,7 +148,7 @@ function Tier({ tier, logoHeight }: { tier: Tier; logoHeight: number }) {
148
<ChevronRight className="shrink-0 translate-y-[-0.5px]" />
149
{tier.name}
150
</h3>
151
- <div className="flex min-w-[70%] flex-wrap justify-center gap-y-4">
+ <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">
152
{tier.items.map(({ link, icon: Icon, name }, i) => (
153
<a
154
key={i}
0 commit comments