fix: sign in button (#30)
parent
07667bd3f0
commit
cd19d75418
|
@ -3,8 +3,8 @@
|
|||
<div text-sm op50>
|
||||
Sign in to follow profiles or hashtags, favourite, share and reply to posts, or interact from your account on a different server.
|
||||
</div>
|
||||
<NuxtLink to="/signin" class="btn-solid text-center">
|
||||
<button class="btn-solid text-center" @click="openUserSwitcher">
|
||||
Sign in
|
||||
</NuxtLink>
|
||||
</button>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
@ -12,7 +12,7 @@ const sorted = computed(() => {
|
|||
<template>
|
||||
<div max-w-40rem mxa p4 flex="~ col gap2">
|
||||
<h1 text-2xl>
|
||||
Switch Account
|
||||
Account
|
||||
</h1>
|
||||
<div mx--2>
|
||||
<template v-for="user of sorted" :key="user.id">
|
||||
|
@ -34,7 +34,7 @@ const sorted = computed(() => {
|
|||
<div mx--4 border="t base" pt2>
|
||||
<button btn-text flex="~ gap-1" items-center @click="openSigninDialog">
|
||||
<div i-ri:user-add-line />
|
||||
Add another account
|
||||
Add an existing account
|
||||
</button>
|
||||
<button
|
||||
v-if="currentUser" btn-text hover:text-red4 flex="~ gap-1" items-center
|
||||
|
|
Loading…
Reference in New Issue