fix: make sure image + content are always 50% width
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
kolaente 2021-12-11 18:36:59 +01:00
parent 498ecc7505
commit 9b58c5fb6b
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 5 deletions

View File

@ -59,19 +59,16 @@ const motd = computed(() => store.state.config.motd)
}
.image {
width: 50%;
@media screen and (max-width: $tablet) {
display: none;
}
@media screen and (min-width: $tablet) {
width: 40%;
background: url('@/assets/no-auth-image.jpg') no-repeat bottom/cover;
position: relative;
}
@media screen and (min-width: $desktop) {
width: 60%;
}
}
.overlay {