mirror of
https://github.com/versia-pub/frontend.git
synced 2026-03-13 03:29:16 +01:00
style: 🎨 Format code with Biome
This commit is contained in:
parent
7ff9d2302a
commit
3627ac0ef8
296 changed files with 3257 additions and 2808 deletions
|
|
@ -3,7 +3,7 @@
|
|||
class="fixed md:hidden bottom-0 inset-x-0 border-t h-16 bg-background z-10 flex items-center justify-around *:h-full *:w-full gap-6 px-4 py-2 [&>a>svg]:size-5 [&>button>svg]:size-5"
|
||||
>
|
||||
<Button :as="NuxtLink" href="/" variant="ghost" size="icon">
|
||||
<Home />
|
||||
<Home/>
|
||||
</Button>
|
||||
<Button
|
||||
:as="NuxtLink"
|
||||
|
|
@ -11,10 +11,10 @@
|
|||
variant="ghost"
|
||||
size="icon"
|
||||
>
|
||||
<Bell />
|
||||
<Bell/>
|
||||
</Button>
|
||||
<Button variant="ghost" size="icon">
|
||||
<User />
|
||||
<User/>
|
||||
</Button>
|
||||
<Button
|
||||
variant="default"
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
:title="m.salty_aloof_turkey_nudge()"
|
||||
@click="useEvent('composer:open')"
|
||||
>
|
||||
<Pen />
|
||||
<Pen/>
|
||||
</Button>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -1,9 +1,15 @@
|
|||
<template>
|
||||
<Tabs v-model:model-value="current">
|
||||
<TabsList>
|
||||
<TabsTrigger v-for="timeline in timelines.filter(
|
||||
<TabsTrigger
|
||||
v-for="timeline in timelines.filter(
|
||||
i => i.requiresLogin ? authStore.isSignedIn : true,
|
||||
)" :key="timeline.value" :value="timeline.value" :as="NuxtLink" :href="timeline.url">
|
||||
)"
|
||||
:key="timeline.value"
|
||||
:value="timeline.value"
|
||||
:as="NuxtLink"
|
||||
:href="timeline.url"
|
||||
>
|
||||
{{ timeline.name }}
|
||||
</TabsTrigger>
|
||||
</TabsList>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue