Fixes numbering on book lists

This commit is contained in:
Mouse Reeve 2022-07-09 13:33:58 -07:00
parent 85f811022f
commit 591c4d9b75

View file

@ -6,11 +6,11 @@ ol.ordered-list {
counter-reset: list-counter;
}
ol.ordered-list li {
ol.ordered-list > li {
counter-increment: list-counter;
}
ol.ordered-list li::before {
ol.ordered-list > li::before {
content: counter(list-counter);
position: absolute;
left: -20px;