Skip to content

Commit

Permalink
fix(pagination): stop clipping two digit page size with fixed width
Browse files Browse the repository at this point in the history
  • Loading branch information
Ján Hamara committed Jul 23, 2024
1 parent 287f4f7 commit af000e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Pagination/Pagination.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ const Pagination: React.FC<PaginationProps> = ({
<Container>
<ButtonsContainer>
{hasMultiplePageSizes && (
<Box aria-label={ariaLabelSelectPageSizeContainer} position="absolute" left="0" width="4.5em">
<Box aria-label={ariaLabelSelectPageSizeContainer} position="absolute" left="0">
<SelectList
options={pageSizes}
onChange={onSelectPageSize}
Expand Down

0 comments on commit af000e1

Please sign in to comment.