0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-24 23:49:45 -05:00

Enhance display of mask at layers panel

This commit is contained in:
Andrés Moya 2020-10-16 15:14:23 +02:00 committed by Alonso Torres
parent ee89b2e7f4
commit f9c45849c8

View file

@ -150,12 +150,14 @@
position: relative; position: relative;
&::before { &::before {
content: "^"; content: " ";
font-size: $fs18; border-right: 1px solid $color-gray-40;
font-family: opensans; border-top: 1px solid $color-gray-40;
font-weight: lighter;
position: absolute; position: absolute;
top: -5px; width: 0.5rem;
height: 0.5rem;
transform: rotate(-45deg);
top: -1px;
left: -5px; left: -5px;
} }
} }
@ -167,18 +169,11 @@
&::before { &::before {
content: " "; content: " ";
border-left: 1px solid $color-gray-40; border-left: 1px solid $color-gray-40;
height: 1rem;
position: absolute;
top: 0;
left: 0;
}
&::after {
content: " ";
border-bottom: 1px solid $color-gray-40; border-bottom: 1px solid $color-gray-40;
height: 1rem;
width: 0.3rem; width: 0.3rem;
position: absolute; position: absolute;
top: 1rem; top: 0;
left: 0; left: 0;
} }
} }