We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 366482c commit 6379963Copy full SHA for 6379963
src/app/contributors.tsx
@@ -9,11 +9,11 @@ export async function Contributors() {
9
})
10
11
return (
12
- <ul className="gap-4 grid grid-cols-4 sm:grid-cols-8">
+ <ul style={{ textWrap: 'balance' } as any}>
13
{contributors.map((contributor) =>
14
contributor.avatar_url !== undefined &&
15
contributor.login !== undefined ? (
16
- <li key={contributor.login}>
+ <li key={contributor.login} className="inline-block px-1">
17
<a href={contributor.html_url} target="_blank" rel="nofollow">
18
<Image
19
src={contributor.avatar_url}
0 commit comments