Fix markdown list style (#7091)

This commit is contained in:
Yuriy Bakhtin 2024-06-27 13:10:40 +03:00 committed by GitHub
parent c5863b42dd
commit da5f9a520f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 4 deletions

View File

@ -122,15 +122,19 @@
ul, ol {
margin-top: 0;
padding-left: 30px;
display: inline-block;
padding-left: 0;
display: table;
list-style-position: inside;
ul, ol {
display: block;
padding-left: 30px;
}
li p {
// otherwise single list items p hides the marker
overflow: visible !important;
}
li > p:first-child {
display: inline;
}
}
.footnote {

File diff suppressed because one or more lines are too long