Merge pull request #37 from Inkception/main

Fix margin between each splatfest team icon
This commit is contained in:
Matt Isenhower 2023-02-15 08:41:17 -08:00 committed by GitHub
commit 779b60b1dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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>