Fix splatfest team icon margin

This commit is contained in:
Inkception 2023-02-15 17:36:30 +01:00
parent 82ad7a6c97
commit 972f1dcf20

View File

@ -7,9 +7,9 @@
<div class="mx-2 px-1 bg-zinc-700 bg-opacity-50 backdrop-blur-sm rounded-lg">
<div class="flex justify-center py-2">
<div class="w-36 sm:mx-2"></div>
<div class="w-36 -mx-1"></div>
<template v-for="team in festival.teams" :key="team.id">
<div class="w-16 sm:w-20 mx-2 flex justify-center py-1 rounded" :style="`background-color: ${toRgba(team.color)};`">
<div class="w-20 mx-2 flex justify-center py-1 rounded" :style="`background-color: ${toRgba(team.color)};`">
<img :src="team.image.url" class="w-6 h-6" />
</div>
</template>