chore(v2): upgrade Infima to 0.2.0-alpha.10 (#2729)

* chore(v2): upgrade Infima to 0.2.0-alpha.10

* Changelog
This commit is contained in:
Alexey Pyltsyn 2020-05-10 16:03:45 +03:00 committed by GitHub
parent afe70d973f
commit 93b39e674f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 36 additions and 25 deletions

View file

@ -16,14 +16,14 @@ function BlogListPaginator(props) {
aria-label="Blog list page navigation"
className="my-5 col col-xl-4 offset-xl-4 col-xs-6">
<ul className="pagination justify-content-between">
<li className="page-item">
<li className="pagination__item">
{previousPage && (
<Link className="page-link rounded-pill" to={previousPage}>
Older
</Link>
)}
</li>
<li className="page-item">
<li className="pagination__item">
{nextPage && (
<Link className="page-link rounded-pill" to={nextPage}>
Newer

View file

@ -14,14 +14,14 @@ function BlogPostPaginator(props) {
return (
<nav aria-label="Blog post page navigation" className="my-5">
<ul className="pagination justify-content-between">
<li className="page-item">
<li className="pagination__item">
{prevItem && (
<Link className="page-link rounded-pill" to={prevItem.permalink}>
&laquo; {prevItem.title}
</Link>
)}
</li>
<li className="page-item">
<li className="pagination__item">
{nextItem && (
<Link className="page-link rounded-pill" to={nextItem.permalink}>
{nextItem.title} &raquo;