1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

fixed error displaying

This commit is contained in:
Fedor Katurov 2020-07-27 18:24:51 +07:00
parent b1c71faf3a
commit 3e6ede51d4
3 changed files with 12 additions and 8 deletions

View file

@ -5,13 +5,16 @@
width: 100%;
height: 100%;
z-index: 2;
background-color: transparentize(black, 0.5);
background-color: transparentize($red, 0.5);
display: flex;
align-items: center;
justify-content: center;
justify-content: flex-end;
margin: 0 !important;
padding: $gap;
box-sizing: border-box;
@include can_backdrop {
background-color: transparentize($content_bg, 0.5);
background-color: transparentize($red, 0.5);
backdrop-filter: blur(10px);
}
}
@ -22,15 +25,14 @@
}
.text {
padding: $gap 0 $gap * 3;
padding: 0 0 $gap 0;
}
.content {
max-width: 260px;
width: 100%;
color: white;
border-radius: $radius;
background-color: $content_bg;
padding: $gap * 2;
padding: $gap;
line-height: 1.2em;
}