feat: add padding to the bottom to make sure the llama is always visible
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
kolaente 2021-12-12 14:54:31 +01:00
parent 0ec58a62cd
commit 925e4a5b03
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 3 additions and 3 deletions

View File

@ -45,14 +45,14 @@ useTitle(() => title.value)
<style lang="scss" scoped>
.no-auth-wrapper {
background-color: var(--site-background);
background: var(--site-background) url('@/assets/llama.svg?url') no-repeat fixed bottom left;
min-height: 100vh;
display: flex;
flex-direction: column;
place-items: center;
@media screen and (min-width: $fullhd) {
background: url('@/assets/llama.svg?url') no-repeat bottom left fixed;
@media screen and (max-width: $fullhd) {
padding-bottom: 15rem;
}
}