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

added node edit menu

This commit is contained in:
Fedor Katurov 2022-07-15 12:13:27 +07:00
parent f185914c7c
commit 74f4c7562b
16 changed files with 320 additions and 175 deletions

View file

@ -0,0 +1,29 @@
@import "src/styles/mixins";
@import "src/styles/variables";
.menu {
flex: 0;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.item {
margin-left: $gap * 4;
position: relative;
&:not(:last-child)::after {
@include inner_shadow;
content: ' ';
position: absolute;
width: 3px;
height: 16px;
background: darken($content_bg, 1%);
display: flex;
top: 5px;
right: -$gap * 2 - 2px;
border-radius: 2px;
}
}