Merge pull request #1941 from lbryio/pg-patch

Fix pagination spacing and align issues
This commit is contained in:
Sean Yesmunt 2018-09-07 10:07:03 -04:00 committed by GitHub
commit dc460c4cb1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View file

@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
### Fixed
* Paragraph rendering now properly includes a margin for new paragraphs ([#1939](https://github.com/lbryio/lbry-desktop/pull/1939))
* Alignment of "navigate to page" input next to pagination on channel pages ([#1941](https://github.com/lbryio/lbry-desktop/pull/1941))
## [0.25.0] - 2018-08-29

View file

@ -34,3 +34,11 @@
color: white;
background: var(--color-primary);
}
.pagination + .form-field {
margin: 0 $spacing-width * 2/3;
.form-field__input {
padding: 0;
}
}