Skip to content

Commit

Permalink
fix: Fix pagination
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed Mar 27, 2021
1 parent 3f8135e commit 79e1961
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export function Pagination(props: PaginationProps) {
aria-label='Page navigation'
className={classnames("pagination-group -mb-3", className)}
>
<ul className='pagination mb-3 pr-3'>
<ul className='pagination mb-3 mr-3'>
<li className={classnames("page-item", !canPreviousPage && "disabled")}>
<PaginationButton
tabIndex={-1}
Expand Down Expand Up @@ -134,7 +134,7 @@ export function Pagination(props: PaginationProps) {
</li>
</ul>

<li className='mb-3 pr-3 flex items-center'>
<li className='mb-3 mr-3 flex items-center'>
<Select
name={"page"}
value={pageSize}
Expand All @@ -143,7 +143,7 @@ export function Pagination(props: PaginationProps) {
setPageSize(+value);
}}
/>
<span className={"pl-3"}>{i18n("items per page")}</span>
<span className={"ml-3"}>{i18n("items per page")}</span>
</li>
{pageOptions && (
<li className={"mb-3 flex items-center"}>
Expand Down

0 comments on commit 79e1961

Please sign in to comment.