Skip to content

Commit 6379963

Browse files
committed
Improve contributors list
1 parent 366482c commit 6379963

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/contributors.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ export async function Contributors() {
99
})
1010

1111
return (
12-
<ul className="gap-4 grid grid-cols-4 sm:grid-cols-8">
12+
<ul style={{ textWrap: 'balance' } as any}>
1313
{contributors.map((contributor) =>
1414
contributor.avatar_url !== undefined &&
1515
contributor.login !== undefined ? (
16-
<li key={contributor.login}>
16+
<li key={contributor.login} className="inline-block px-1">
1717
<a href={contributor.html_url} target="_blank" rel="nofollow">
1818
<Image
1919
src={contributor.avatar_url}

0 commit comments

Comments
 (0)