Only show the llama background for unauthenticated users
This commit is contained in:
parent
d34fe5dadc
commit
ef608aacd1
3 changed files with 27 additions and 26 deletions
|
@ -1,4 +1,5 @@
|
|||
<template>
|
||||
<div class="no-auth-wrapper">
|
||||
<div class="noauth-container">
|
||||
<img alt="Vikunja" src="/images/logo-full.svg"/>
|
||||
<div class="message is-info" v-if="motd !== ''">
|
||||
|
@ -11,6 +12,7 @@
|
|||
</div>
|
||||
<router-view/>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
|
|
@ -29,6 +29,10 @@
|
|||
}
|
||||
}
|
||||
|
||||
.no-auth-wrapper {
|
||||
background: url('../../public/images/llama.svg') no-repeat bottom left fixed $light-background;
|
||||
min-height: 100vh;
|
||||
|
||||
.noauth-container {
|
||||
max-width: 450px;
|
||||
width: 100%;
|
||||
|
@ -45,6 +49,7 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.media-content {
|
||||
width: calc(100% - 48px - 2em);
|
||||
|
|
|
@ -25,14 +25,8 @@
|
|||
}
|
||||
|
||||
body {
|
||||
background: url("../../public/images/llama.svg") no-repeat bottom left fixed $light-background;
|
||||
min-height: 100vh;
|
||||
|
||||
@media screen and (max-width: $tablet) {
|
||||
&:not(.has-llama) {
|
||||
background: $light-background;
|
||||
}
|
||||
}
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
h1,
|
||||
|
|
Loading…
Reference in a new issue