mirror of
https://github.com/gcushen/hugo-academic.git
synced 2025-07-26 19:15:16 +02:00
fix: paragraph margin for para within list
Note: Goldmark appears to occasionally render paragraphs within lists even if it's unnecessary. Fix #1816
This commit is contained in:
parent
05bfd7c48d
commit
fef46cfbe0
1 changed files with 5 additions and 0 deletions
|
@ -58,6 +58,11 @@ ul, ol, dl {
|
|||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
li > p {
|
||||
// Override the default paragraph margin for paragraphs within lists.
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
ul.task-list {
|
||||
list-style: none;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue