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,15 +1,17 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="noauth-container">
|
<div class="no-auth-wrapper">
|
||||||
<img alt="Vikunja" src="/images/logo-full.svg"/>
|
<div class="noauth-container">
|
||||||
<div class="message is-info" v-if="motd !== ''">
|
<img alt="Vikunja" src="/images/logo-full.svg"/>
|
||||||
<div class="message-header">
|
<div class="message is-info" v-if="motd !== ''">
|
||||||
<p>Info</p>
|
<div class="message-header">
|
||||||
</div>
|
<p>Info</p>
|
||||||
<div class="message-body">
|
</div>
|
||||||
{{ motd }}
|
<div class="message-body">
|
||||||
|
{{ motd }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<router-view/>
|
||||||
</div>
|
</div>
|
||||||
<router-view/>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -29,18 +29,23 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.noauth-container {
|
.no-auth-wrapper {
|
||||||
max-width: 450px;
|
background: url('../../public/images/llama.svg') no-repeat bottom left fixed $light-background;
|
||||||
width: 100%;
|
min-height: 100vh;
|
||||||
margin: 0 auto;
|
|
||||||
padding: 1rem;
|
|
||||||
|
|
||||||
@media screen and (max-width: 450px) {
|
.noauth-container {
|
||||||
.login-buttons {
|
max-width: 450px;
|
||||||
flex-direction: column;
|
width: 100%;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 1rem;
|
||||||
|
|
||||||
.control:first-child {
|
@media screen and (max-width: 450px) {
|
||||||
margin-bottom: 1rem;
|
.login-buttons {
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
.control:first-child {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,14 +25,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background: url("../../public/images/llama.svg") no-repeat bottom left fixed $light-background;
|
background: $light-background;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
|
|
||||||
@media screen and (max-width: $tablet) {
|
|
||||||
&:not(.has-llama) {
|
|
||||||
background: $light-background;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
h1,
|
h1,
|
||||||
|
|
Loading…
Reference in a new issue