feat: 💄 Refresh mobile navbar styles

This commit is contained in:
Jesse Wierzbinski 2024-06-18 20:39:18 -10:00
parent 1691daa000
commit 0c46cb2dc2
No known key found for this signature in database
3 changed files with 26 additions and 20 deletions

View file

@ -0,0 +1,14 @@
<template>
<ButtonsBase
class="hover:bg-white/5 text-xs max-w-full w-full gap-1 h-full !px-0 flex flex-col items-center justify-center">
<iconify-icon :icon="icon" class="size-6" width="none" />
<span class="text-xs hidden md:inline">{{ text }}</span>
</ButtonsBase>
</template>
<script lang="ts" setup>
defineProps<{
icon: string;
text: string;
}>();
</script>