chore: show llama background only on fullhd and up
Some checks failed
continuous-integration/drone/pr Build is failing

This commit is contained in:
kolaente 2021-12-11 18:15:55 +01:00
parent 4abe1363ec
commit 1ff667e598
Signed by: konrad
GPG Key ID: F40E70337AB24C9B

View File

@ -33,12 +33,16 @@ const motd = computed(() => store.state.config.motd)
<style lang="scss" scoped> <style lang="scss" scoped>
.no-auth-wrapper { .no-auth-wrapper {
background: url('@/assets/llama.svg') no-repeat bottom left fixed var(--site-background); background-color: var(--site-background);
min-height: 100vh; min-height: 100vh;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
@media screen and (min-width: $fullhd) {
background: url('@/assets/llama.svg') no-repeat bottom left fixed;
}
} }
.noauth-container { .noauth-container {