1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +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

@ -72,7 +72,7 @@
}
.name {
font: $font_14_regular;
font: $font_12_regular;
color: transparentize(white, 0.5);
text-transform: lowercase;
@ -95,37 +95,6 @@
min-width: 0;
}
.buttons {
flex: 0;
padding-right: $gap;
fill: transparentize(white, 0.7);
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
margin-top: 12px;
& > * {
@include button;
}
@include tablet {
align-self: center;
}
}
.buttons {
& > * {
&:last-child {
margin-right: 0;
&::after {
display: none;
}
}
}
}
.mark {
flex: 0 0 32px;
position: relative;
@ -177,8 +146,11 @@
will-change: transform;
position: relative;
flex: 0 0 32px;
fill: currentColor;
&.is_liked {
opacity: 1;
svg {
fill: $red;
}
@ -213,3 +185,13 @@
pointer-events: none;
touch-action: none;
}
.buttons {
margin-top: 12px;
margin-right: $gap;
}
.button {
color: white;
@include hover_opacity;
}