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

fixed node title wrapping on mobile

This commit is contained in:
Fedor Katurov 2022-07-15 16:09:02 +07:00
parent 74f4c7562b
commit e9a1a624fd
2 changed files with 19 additions and 2 deletions

View file

@ -10,9 +10,16 @@
}
.item {
margin-left: $gap * 4;
position: relative;
&:not(:first-child) {
margin-left: $gap * 4;
@include tablet {
margin-left: $gap * 2;
}
}
&:not(:last-child)::after {
@include inner_shadow;
@ -25,5 +32,9 @@
top: 5px;
right: -$gap * 2 - 2px;
border-radius: 2px;
@include tablet {
right : -$gap - 1px;
}
}
}