mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
33 lines
545 B
SCSS
33 lines
545 B
SCSS
@import "src/styles/variables.scss";
|
|
|
|
@keyframes appear {
|
|
0% { opacity: 0 }
|
|
100% { opacity: 1 }
|
|
}
|
|
|
|
.popper {
|
|
@include outer_shadow;
|
|
|
|
background-color: darken($content_bg, 4%);
|
|
padding: $gap;
|
|
box-sizing:border-box;
|
|
z-index: 4;
|
|
touch-action: none;
|
|
pointer-events: none;
|
|
border-radius: $radius;
|
|
animation: appear forwards 250ms;
|
|
}
|
|
|
|
.username {
|
|
font: $font_18_semibold;
|
|
line-height: 1.25em;
|
|
}
|
|
|
|
.description {
|
|
@include clamp(2, 12px);
|
|
|
|
font: $font_12_regular;
|
|
opacity: 0.5;
|
|
margin-top: 3px;
|
|
line-height: 1.25em;
|
|
}
|