Skip to content

Commit 55f9863

Browse files
authored
fix: pagination button spacing (#215)
1 parent e843453 commit 55f9863

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/data-table/pagination.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export function DataTablePagination<TData>({
9292
) : (
9393
<Button
9494
variant={currentPage === pageNumber ? 'default' : 'outline'}
95-
className='size-8 p-0'
95+
className='h-8 min-w-8 px-2'
9696
onClick={() => table.setPageIndex((pageNumber as number) - 1)}
9797
>
9898
<span className='sr-only'>Go to page {pageNumber}</span>

0 commit comments

Comments
 (0)