Merge pull request #1939 from lbryio/md-patch
Fix paragraphs spacing on markdown render
This commit is contained in:
commit
27ef62d3df
2 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -39,6 +39,7 @@
|
|||
|
||||
/* Paragraphs */
|
||||
p {
|
||||
margin: $spacing-vertical * 2/3 0;
|
||||
white-space: pre-line;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue