Update main.scss to fix footnote counting issue
This commit is contained in:
parent
9726b8d806
commit
0085fc68b9
@ -262,31 +262,31 @@ ol {
|
||||
ol {
|
||||
list-style: none;
|
||||
counter-reset: li;
|
||||
}
|
||||
|
||||
li {
|
||||
counter-increment: li;
|
||||
}
|
||||
ol > li {
|
||||
counter-increment: li;
|
||||
}
|
||||
|
||||
li:before {
|
||||
content: counter(li);
|
||||
position: absolute;
|
||||
right: calc(100% + 10px);
|
||||
color: $accent;
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
}
|
||||
ol > li:before {
|
||||
content: counter(li);
|
||||
position: absolute;
|
||||
right: calc(100% + 10px);
|
||||
color: $accent;
|
||||
display: inline-block;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
ol {
|
||||
margin-left: 38px;
|
||||
ol > ol {
|
||||
margin-left: 38px;
|
||||
}
|
||||
|
||||
li {
|
||||
counter-increment: li;
|
||||
}
|
||||
ol > ol > li {
|
||||
counter-increment: li;
|
||||
}
|
||||
|
||||
li:before {
|
||||
content: counters(li, ".") " ";
|
||||
}
|
||||
}
|
||||
ol > ol > li:before {
|
||||
content: counters(li, ".") " ";
|
||||
}
|
||||
|
||||
mark {
|
||||
|
Loading…
Reference in New Issue
Block a user