fix paragraphs inside of <ul>'s which are too spaced apart. (#102719)

* * paragraphs inside of <ul>'s were too spaced apart.
* It looks odd because markdown converts list items to <p>s

* li > p should be even better
This commit is contained in:
Jason Williams 2020-07-16 19:20:38 +01:00 committed by GitHub
parent c6007a872b
commit 9a12a5abed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -131,6 +131,10 @@ p {
margin-bottom: 1.5em;
}
li > p {
margin-bottom: 0;
}
/* don't space 2 paragraphs too far apart */
p + p {
margin-top: -0.8em;