1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00
vault-frontend/src/components/profile/ProfileAccountsError/styles.module.scss
2020-11-06 13:05:43 +07:00

41 lines
698 B
SCSS

@import "src/styles/variables";
.wrap {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 2;
background-color: transparentize($red, 0.5);
display: flex;
align-items: center;
justify-content: flex-end;
margin: 0 !important;
padding: $gap;
box-sizing: border-box;
border-radius: $radius;
@include can_backdrop {
background-color: transparentize($red, 0.5);
backdrop-filter: blur(10px);
}
}
.title {
text-transform: capitalize;
font: $font_cell_title;
}
.text {
padding: 0 0 $gap 0;
}
.content {
width: 100%;
color: white;
border-radius: $radius;
background-color: $content_bg;
padding: $gap;
line-height: 1.2em;
}