More actions
No edit summary |
No edit summary |
||
Line 10: | Line 10: | ||
position: absolute; | position: absolute; | ||
top: 50%; | top: 50%; | ||
left: - | left: -16px; | ||
width: | width: 14px; | ||
height: 2px; | height: 2px; | ||
display: block; | display: block; | ||
Line 21: | Line 21: | ||
} | } | ||
.hierarchy-tree > .-tree-indent { | .hierarchy-tree > .-tree-indent { | ||
padding-left: | padding-left: 24px; | ||
position: relative; | position: relative; | ||
} | } |
Revision as of 03:15, 14 December 2024
.hierarchy-tree {
display: flex;
flex-flow: column nowrap;
height: max-content;
}
.hierarchy-tree .__item {
position: relative; /* absolute positioning target */
}
.hierarchy-tree .hierarchy-tree .__item::after {
position: absolute;
top: 50%;
left: -16px;
width: 14px;
height: 2px;
display: block;
content: "";
background-color: var(--color-base);
}
.hierarchy-tree .__item > .emoji {
margin-right: 6px;
}
.hierarchy-tree > .-tree-indent {
padding-left: 24px;
position: relative;
}
.hierarchy-tree > .-tree-indent::after {
left: 6px;
width: 2px;
top: 2px;
bottom: 2px;
display: block;
position: absolute;
content: "";
background-color: var(--color-base);
}