Fix paragraphs spacing on markdown render #1939

Merged
btzr-io merged 3 commits from md-patch into master 2018-09-07 15:56:15 +02:00
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;
}