feat: restyle unauthenticated screens #1103

Merged
dpschen merged 29 commits from feature/login-pages into main 2021-12-12 16:40:14 +00:00
Showing only changes of commit 925e4a5b03 - Show all commits

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;
}
}