chore: rearrange styles
continuous-integration/drone/pr Build was killed Details

This commit is contained in:
kolaente 2021-12-12 15:51:38 +01:00
parent c0b8d08239
commit 3ab2efb32c
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 10 additions and 11 deletions

View File

@ -77,11 +77,20 @@ useTitle(() => title.value)
flex-direction: column;
justify-content: flex-end;
@media screen and (max-width: $tablet) {
display: none;
}
@media screen and (min-width: $tablet) {
background: url('@/assets/no-auth-image.jpg') no-repeat bottom/cover;
position: relative;
}
&.has-message {
justify-content: space-between;
}
&::after {
&::before {
content: '';
position: absolute;
top: 0;
@ -89,19 +98,9 @@ useTitle(() => title.value)
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, .2);
z-index: 10;
}
> * {
z-index: 20;
}
@media screen and (max-width: $tablet) {
display: none;
}
@media screen and (min-width: $tablet) {
background: url('@/assets/no-auth-image.jpg') no-repeat bottom/cover;
position: relative;
}
}