0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-23 06:58:58 -05:00

🐛 Fix separator lines have no color at some menus

This commit is contained in:
Pablo Alba 2024-12-05 16:11:27 +01:00
parent 553b9eb4bb
commit cf72b35e73
3 changed files with 3 additions and 2 deletions

View file

@ -36,7 +36,7 @@
background-color: var(--menu-background-color); background-color: var(--menu-background-color);
overflow: auto; overflow: auto;
& .separator { & .separator {
height: $s-12; border-top: solid $s-1 var(--color-background-quaternary);
} }
&.min-width { &.min-width {

View file

@ -370,6 +370,7 @@
.profile-separator { .profile-separator {
height: $s-6; height: $s-6;
border-top: solid $s-1 var(--color-background-quaternary);
} }
.item-with-icon { .item-with-icon {

View file

@ -318,7 +318,7 @@
hr { hr {
margin: $s-20 0; margin: $s-20 0;
border-top: solid 1px var(--modal-separator-backogrund-color); border-top: solid $s-1 var(--modal-separator-backogrund-color);
} }
.separator { .separator {