mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 06:49:40 +02:00
feat(home): remove margins from env list [EE-4868] (#8285)
This commit is contained in:
parent
7793b98813
commit
4bdf30c038
2 changed files with 102 additions and 101 deletions
|
@ -1,3 +1,5 @@
|
|||
import clsx from 'clsx';
|
||||
|
||||
import { ItemsPerPageSelector } from './ItemsPerPageSelector';
|
||||
import { PageSelector } from './PageSelector';
|
||||
|
||||
|
@ -9,6 +11,7 @@ interface Props {
|
|||
showAll?: boolean;
|
||||
totalCount: number;
|
||||
isPageInputVisible?: boolean;
|
||||
className?: string;
|
||||
}
|
||||
|
||||
export function PaginationControls({
|
||||
|
@ -19,9 +22,10 @@ export function PaginationControls({
|
|||
onPageChange,
|
||||
totalCount,
|
||||
isPageInputVisible,
|
||||
className,
|
||||
}: Props) {
|
||||
return (
|
||||
<div className="paginationControls">
|
||||
<div className={clsx('paginationControls', className)}>
|
||||
<div className="form-inline flex">
|
||||
<ItemsPerPageSelector
|
||||
value={pageLimit}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue