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

#58 added cancel confirmation dialog

This commit is contained in:
Fedor Katurov 2021-03-30 11:42:32 +07:00
parent 805cde559b
commit 6f09af1b36
3 changed files with 94 additions and 6 deletions

View file

@ -0,0 +1,35 @@
@import "~/styles/variables.scss";
.wrap {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 21;
background: transparentize($color: #000000, $amount: 0.9);
display: flex;
align-items: center;
justify-content: center;
@include can_backdrop {
backdrop-filter: blur(15px);
}
}
.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;
}