blob: 26faac3f0e79bbc5d3e3d6ad1e6fed91437e8066 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.list {
.description:not(:first-of-type) {
&::before {
display: inline;
float: left;
content: "/";
margin-right: var(--itemSpacing);
}
}
&--stack {
.term {
flex: 0 0 100%;
}
}
}
|