Skip to content

Commit 0519068

Browse files
committed
fix: finally fix breakpoint issues for sponsor logos
1 parent 2609ae8 commit 0519068

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/app/conf/2025/past-sponsors.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,12 @@ function List({
6161
linkClassName?: string
6262
}) {
6363
return (
64-
<div className={clsx("flex gap-6 max-lg:flex-col", className)}>
64+
<div
65+
className={clsx(
66+
"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3",
67+
className,
68+
)}
69+
>
6570
{items.map(({ link, icon, name }, i) => (
6671
<a
6772
key={i}

0 commit comments

Comments
 (0)