mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
37 lines
556 B
SCSS
37 lines
556 B
SCSS
@import 'src/styles/variables';
|
|
|
|
.wrap {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 2;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
margin: 0 !important;
|
|
padding: $gap;
|
|
box-sizing: border-box;
|
|
border-radius: $radius;
|
|
|
|
@include blur;
|
|
}
|
|
|
|
.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;
|
|
}
|