mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
42 lines
578 B
SCSS
42 lines
578 B
SCSS
@import "src/styles/variables.scss";
|
|
|
|
@keyframes appear {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.wrap {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 21;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
animation: appear 0.25s forwards;
|
|
|
|
@include blur();
|
|
}
|
|
|
|
.title {
|
|
text-transform: uppercase;
|
|
font: $font_18_semibold;
|
|
}
|
|
|
|
.content {
|
|
flex: 0 0 auto;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.subtitle {
|
|
font: $font_12_medium;
|
|
color: darken(white, 50%);
|
|
max-width: 300px;
|
|
}
|