partial fix for location card spacing

This commit is contained in:
Hayden 2022-12-29 19:56:41 -09:00
parent 6a8a25e3f8
commit 8e5f97b4e9
No known key found for this signature in database
GPG key ID: 17CF79474E257545

View file

@ -19,7 +19,14 @@
<span class="mx-auto">
{{ location.name }}
</span>
<span v-if="hasCount" class="badge badge-primary h-6 badge-lg"> {{ count }}</span>
<span
class="badge badge-primary h-6 badge-lg"
:class="{
'opacity-0': !hasCount,
}"
>
{{ count }}
</span>
</h2>
</div>
</NuxtLink>