mirror of
https://github.com/strapi/strapi.git
synced 2025-09-25 08:19:07 +00:00
fix(admin): add bottom padding to pagination component
This commit is contained in:
parent
e2e449a08e
commit
be554db7bb
@ -107,7 +107,13 @@ const Root = React.forwardRef<HTMLDivElement, RootProps>(
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
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
|
<PaginationProvider
|
||||||
currentQuery={query}
|
currentQuery={query}
|
||||||
page={query.page}
|
page={query.page}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user