mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-24 06:27:02 +02:00
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:
parent
afe70d973f
commit
93b39e674f
9 changed files with 36 additions and 25 deletions
|
@ -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
|
||||
|
|
|
@ -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}>
|
||||
« {prevItem.title}
|
||||
</Link>
|
||||
)}
|
||||
</li>
|
||||
<li className="page-item">
|
||||
<li className="pagination__item">
|
||||
{nextItem && (
|
||||
<Link className="page-link rounded-pill" to={nextItem.permalink}>
|
||||
{nextItem.title} »
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue