mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-26 21:28:04 +00:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user