diff --git a/src/app/modules/components/paginator.module.tsx b/src/app/modules/components/paginator.module.tsx index 78fa766..3bc5617 100644 --- a/src/app/modules/components/paginator.module.tsx +++ b/src/app/modules/components/paginator.module.tsx @@ -53,9 +53,9 @@ export const Paginator = ({ total_count, take, onChange }: PaginatorProps) => { return _display ?
{_pages.length > 0 && <> - _setPage(last => Math.max(0, last - 1))} /> + _setPage(last => Math.max(0, last - 1))} /> {_pages} - _setPage(last => Math.min(last + 1, Math.ceil(_totalCount / _take) - 1))} /> + _setPage(last => Math.min(last + 1, Math.ceil(_totalCount / _take) - 1))} /> }
: null; diff --git a/src/app/styles/paginator.module.css b/src/app/styles/paginator.module.css index 2faa30a..905a55e 100644 --- a/src/app/styles/paginator.module.css +++ b/src/app/styles/paginator.module.css @@ -29,7 +29,12 @@ font-size: 1rem; width: .8rem; height: .8rem; - padding: .9rem; + padding: .9rem !important; margin: .1rem; } + + .arrow { + width: 1.5rem !important; + height: auto; + } } \ No newline at end of file