Skip to content

Commit

Permalink
fix(components): fix totalLength design
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed Sep 20, 2023
1 parent 5f3858b commit 22248a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export function Pagination(props: PaginationProps) {
)}
{totalLength !== undefined && (
<li className={"mb-3 flex items-center"} data-testid='pagination-total-items'>
{i18n("Total")}: <strong>{new Intl.NumberFormat(undefined).format(totalLength)}</strong> {i18n("items")}
{i18n("Total")}: <strong className='mx-1'>{new Intl.NumberFormat(undefined).format(totalLength)}</strong> {i18n("items")}
</li>
)}
</nav>
Expand Down

0 comments on commit 22248a5

Please sign in to comment.