Skip to content

Commit 262e7da

Browse files
committed
fix: resolve styles conflict in about-logo-list
1 parent 259317b commit 262e7da

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

app/components/About/LogoList.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const props = defineProps<{
2121
</script>
2222

2323
<template>
24-
<ul class="flex items-center flex-wrap gap-4 md:gap-x-6 md:gap-y-4 list-none">
24+
<ul class="flex flex-wrap gap-4 md:gap-x-6 md:gap-y-4 list-none">
2525
<li v-for="item in list" :key="item.name">
2626
<a
2727
v-if="'logo' in item"

app/pages/about.vue

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,14 +161,17 @@ const roleLabels = computed(
161161
<h2 class="text-lg text-fg uppercase tracking-wider mb-4">
162162
{{ $t('about.sponsors.title') }}
163163
</h2>
164-
<AboutLogoList :list="SPONSORS" class="flex-col items-start md:flex-row" />
164+
<AboutLogoList
165+
:list="SPONSORS"
166+
class="flex-col items-start md:flex-row md:items-center"
167+
/>
165168
</div>
166169

167170
<div>
168171
<h2 class="text-lg text-fg uppercase tracking-wider mb-4">
169172
{{ $t('about.oss_partners.title') }}
170173
</h2>
171-
<AboutLogoList :list="OSS_PARTNERS" />
174+
<AboutLogoList :list="OSS_PARTNERS" class="items-center" />
172175
</div>
173176

174177
<div>

0 commit comments

Comments
 (0)