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

fixed style files module names

This commit is contained in:
Fedor Katurov 2020-11-06 12:15:07 +07:00
parent 52acdb283e
commit 2daa38ad12
223 changed files with 113 additions and 114 deletions

View file

@ -0,0 +1,39 @@
.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;
}