fix(style): make login and signup buttons visible on desktop if not logged in
This commit is contained in:
parent
55789f5c01
commit
ce03a0ccee
|
@ -90,8 +90,8 @@ const logoUrl = computed(() => store.state.auth.authenticated ? 'library.index'
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Sign up, Log in -->
|
<!-- Sign up, Log in -->
|
||||||
<div style="display:contents;" class="hide-on-desktop" v-if="!store.state.auth.authenticated">
|
<div style="display:contents;" v-if="!store.state.auth.authenticated">
|
||||||
<Layout flex no-gap>
|
<Layout flex grow no-gap>
|
||||||
<Link :to="{ name: 'login' }"
|
<Link :to="{ name: 'login' }"
|
||||||
primary solid
|
primary solid
|
||||||
icon="bi-box-arrow-in-right"
|
icon="bi-box-arrow-in-right"
|
||||||
|
|
Loading…
Reference in New Issue