Merge pull request #1939 from lbryio/md-patch

Fix paragraphs spacing on markdown render
This commit is contained in:
Sean Yesmunt 2018-09-07 09:56:15 -04:00 committed by GitHub
commit 27ef62d3df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
### Changed
### Fixed
* Paragraph rendering now properly includes a margin for new paragraphs ([#1939](https://github.com/lbryio/lbry-desktop/pull/1939))
## [0.25.0] - 2018-08-29

View file

@ -39,6 +39,7 @@
/* Paragraphs */
p {
margin: $spacing-vertical * 2/3 0;
white-space: pre-line;
}