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/menu/MenuButton/styles.module.scss
2022-07-26 16:30:56 +07:00

36 lines
552 B
SCSS

@import "src/styles/variables.scss";
.menu {
position: relative;
cursor: pointer;
}
.popper {
@include outer_shadow;
box-sizing: border-box;
z-index: 12;
border-radius: $radius;
visibility: hidden;
pointer-events: none;
touch-action: none;
background-color: transparentize($content_bg, 0.05);
&.visible {
visibility: visible;
pointer-events: all;
touch-action: initial;
}
&.fixed {
z-index: 100;
}
&.translucent {
@include blur($content_bg, 15px, 0.5);
}
}
.arrow {
@include popper_arrow;
}