Skip to content

Commit 9352ae3

Browse files
committed
Fix arrow direction
1 parent 83d9c99 commit 9352ae3

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,19 +110,19 @@
110110
position: absolute;
111111
width: 0;
112112
height: 0;
113-
top: 2px;
114-
left: 3px;
115-
border-style: solid;
116-
border-width: 0 3px 6px 3px;
117-
border-color: transparent transparent var(--color-2-mildblack) transparent;
118-
}
119-
120-
&.expanded::after {
121113
top: 3px;
122114
left: 4px;
115+
border-style: solid;
123116
border-width: 3px 0 3px 6px;
124117
border-color: transparent transparent transparent var(--color-2-mildblack);
125118
}
119+
120+
&.expanded::after {
121+
top: 4px;
122+
left: 3px;
123+
border-width: 6px 3px 0 3px;
124+
border-color: var(--color-2-mildblack) transparent transparent transparent;
125+
}
126126
}
127127
128128
.node-connector-missing {

0 commit comments

Comments
 (0)