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:
parent
f185914c7c
commit
74f4c7562b
16 changed files with 320 additions and 175 deletions
29
src/components/menu/SeparatedMenu/styles.module.scss
Normal file
29
src/components/menu/SeparatedMenu/styles.module.scss
Normal 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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue