Fix/mobile-layouts (#192)

* partial fix for location card spacing

* update header on mobile
This commit is contained in:
Hayden 2022-12-29 21:18:49 -08:00 committed by GitHub
parent 6a8a25e3f8
commit 58d6f9a28c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 8 deletions

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>