mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-02-16 19:15:16 +00:00
Fixes numbering on book lists
This commit is contained in:
parent
85f811022f
commit
591c4d9b75
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue