Skip to content

Commit 17ed07d

Browse files
committed
fix: equalise logo sizes
1 parent 262e7da commit 17ed07d

1 file changed

Lines changed: 16 additions & 2 deletions

File tree

app/pages/about.vue

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,13 +157,13 @@ const roleLabels = computed(
157157
</ul>
158158
</div>
159159

160-
<div>
160+
<div class="sponsors-logos">
161161
<h2 class="text-lg text-fg uppercase tracking-wider mb-4">
162162
{{ $t('about.sponsors.title') }}
163163
</h2>
164164
<AboutLogoList
165165
:list="SPONSORS"
166-
class="flex-col items-start md:flex-row md:items-center"
166+
class="flex-col gap-8 items-start md:flex-row md:items-center md:gap-4"
167167
/>
168168
</div>
169169

@@ -306,3 +306,17 @@ const roleLabels = computed(
306306
</article>
307307
</main>
308308
</template>
309+
310+
<style scoped>
311+
.sponsors-logos :deep(a) {
312+
width: 8rem;
313+
height: 2.5rem;
314+
}
315+
316+
.sponsors-logos :deep(img) {
317+
width: auto;
318+
height: auto;
319+
max-width: 100%;
320+
max-height: 100%;
321+
}
322+
</style>

0 commit comments

Comments
 (0)