Skip to content

Commit 4b2eea1

Browse files
committed
Fix arrow direction
1 parent 83d9c99 commit 4b2eea1

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

frontend/src/components/panels/LayerTree.vue

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -110,18 +110,18 @@
110110
position: absolute;
111111
width: 0;
112112
height: 0;
113-
top: 2px;
114-
left: 3px;
113+
top: 3px;
114+
left: 2px;
115115
border-style: solid;
116-
border-width: 0 3px 6px 3px;
117-
border-color: transparent transparent var(--color-2-mildblack) transparent;
116+
border-width: 3px 0 3px 6px;
117+
border-color: transparent transparent transparent var(--color-2-mildblack);
118118
}
119119
120120
&.expanded::after {
121-
top: 3px;
122-
left: 4px;
123-
border-width: 3px 0 3px 6px;
124-
border-color: transparent transparent transparent var(--color-2-mildblack);
121+
top: 4px;
122+
left: 3px;
123+
border-width: 6px 3px 0 3px;
124+
border-color: var(--color-2-mildblack) transparent transparent transparent;
125125
}
126126
}
127127

0 commit comments

Comments
 (0)