Skip to content

Commit 986dfa2

Browse files
authored
Restore list markers (#279)
Chatbot uses Needle styles. Needle styles set `list-type: none` on `ol` and `ul` We need to set styles for lists in `.doc` content.
1 parent 78d7cb1 commit 986dfa2

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/css/doc.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -578,6 +578,14 @@ body {
578578
padding: 0 0 0 2rem;
579579
}
580580

581+
.doc ol {
582+
list-style-type: decimal;
583+
}
584+
585+
.doc ul {
586+
list-style-type: disc;
587+
}
588+
581589
.doc ol.arabic {
582590
list-style-type: decimal;
583591
}

0 commit comments

Comments
 (0)