Restore original paragraph spacing #206
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
#103 removed a couple CSS rules that were being applied to blockquote, which was intentional.
But in the process, it resulted in
p
and some elements likeul li
losing those rules too, and using thetable
rule from below. I suspect this was unintentional because there was a blank line between those elements and the table element:This change resulted in paragraphs having a bottom margin of
2.5rem
, when we want the theme's default of1.125rem
.--
This doesn't seem to impact spacing in
<ol>
and<ul>
, but the code before this PR did cause too much space in<dl>
(description list). Meanwhile, the code before #103 was bad that it was setting the style for<dt>
(term), which resulted in the font not being bolded until #103. So, this PR fixes the spacing, but removesdt
from the rule set so that it stays bold.Before
--
After
--