Skip to content

Commit 241d1f1

Browse files
authored
style: fix overflow on md device (#224)
1 parent d2e43a2 commit 241d1f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/.vitepress/theme/Authors.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const authors = computed(() => {
1616
<dt class="sr-only">Authors</dt>
1717
<dd>
1818
<ul
19-
class="flex flex-col pl-10 space-y-5 md:justify-center md:flex-row md:space-y-0 md:space-x-12 md:pl-0 xl:block xl:space-x-0 xl:space-y-8"
19+
class="flex flex-col pl-10 gap-y-5 md:grid md:grid-cols-2 md:gap-x-8 md:gap-y-6 md:pl-0 lg:grid-cols-3 xl:block xl:space-y-8"
2020
>
2121
<template v-for="author in authors" :key="author.name">
2222
<Author :name="author.name" :github="author.github" :avatar="author.avatar" />

0 commit comments

Comments
 (0)