Skip to content

Commit 62cff37

Browse files
authored
style: improve contributors layout (#920)
1 parent 95f8c02 commit 62cff37

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

app/pages/about.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,10 @@ const { data: contributors, status: contributorsStatus } = useFetch<GitHubContri
181181
<div v-else-if="contributorsStatus === 'error'" class="text-fg-subtle text-sm">
182182
{{ $t('about.contributors.error') }}
183183
</div>
184-
<div v-else-if="contributors?.length" class="flex flex-wrap gap-2">
184+
<div
185+
v-else-if="contributors?.length"
186+
class="grid grid-cols-[repeat(auto-fill,48px)] justify-center gap-2"
187+
>
185188
<a
186189
v-for="contributor in contributors"
187190
:key="contributor.id"

0 commit comments

Comments
 (0)