mirror of
https://github.com/versia-pub/frontend.git
synced 2026-03-13 11:39:16 +01:00
feat: 💄 Refresh mobile navbar styles
This commit is contained in:
parent
1691daa000
commit
0c46cb2dc2
3 changed files with 26 additions and 20 deletions
14
components/buttons/mobile-navbar-button.vue
Normal file
14
components/buttons/mobile-navbar-button.vue
Normal 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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue