fix(style): sidebar and page layout
This commit is contained in:
parent
6c272500ec
commit
5199ac2509
|
@ -7,6 +7,7 @@
|
|||
html, body {
|
||||
font-family: $font-main;
|
||||
font-size: 16px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.has-background-light {
|
||||
|
|
|
@ -191,18 +191,18 @@ const isOpen = ref(false)
|
|||
<!-- Sign up, Log in -->
|
||||
<div
|
||||
v-if="!store.state.auth.authenticated"
|
||||
style="display:contents;"
|
||||
style="display: contents;"
|
||||
>
|
||||
<Layout
|
||||
flex
|
||||
grow
|
||||
style="--gap:16px;"
|
||||
gap-16
|
||||
>
|
||||
<Link
|
||||
:to="{ name: 'login' }"
|
||||
solid
|
||||
auto
|
||||
grow
|
||||
icon="bi-box-arrow-in-right"
|
||||
style="flex-grow:1"
|
||||
class="active"
|
||||
>
|
||||
{{ t('components.common.UserMenu.link.login') }}
|
||||
|
@ -211,13 +211,14 @@ const isOpen = ref(false)
|
|||
:to="{ name: 'signup' }"
|
||||
default
|
||||
solid
|
||||
auto
|
||||
grow
|
||||
icon="bi-person-square"
|
||||
style="flex-grow:1"
|
||||
>
|
||||
{{ t('components.common.UserMenu.link.signup') }}
|
||||
</Link>
|
||||
</Layout>
|
||||
<Spacer :size="32" />
|
||||
<Spacer grow />
|
||||
</div>
|
||||
|
||||
<nav style="display:contents;">
|
||||
|
|
Loading…
Reference in New Issue