fix(admin): add bottom padding to pagination component

This commit is contained in:
Fernando Chavez 2024-06-14 16:58:10 +02:00
parent e2e449a08e
commit be554db7bb

View File

@ -107,7 +107,13 @@ const Root = React.forwardRef<HTMLDivElement, RootProps>(
};
return (
<Flex ref={forwardedRef} paddingTop={4} alignItems="flex-end" justifyContent="space-between">
<Flex
ref={forwardedRef}
paddingTop={4}
paddingBottom={4}
alignItems="flex-end"
justifyContent="space-between"
>
<PaginationProvider
currentQuery={query}
page={query.page}