mirror of
https://github.com/strapi/strapi.git
synced 2025-12-07 20:44:55 +00:00
Fix padding
This commit is contained in:
parent
4bb075c3b4
commit
1cceb67f65
@ -1,6 +1,6 @@
|
|||||||
import React, { Children, cloneElement, useState } from 'react';
|
import React, { Children, cloneElement, useState } from 'react';
|
||||||
|
|
||||||
import { Box, Button, Flex, Table as TableCompo, Typography } from '@strapi/design-system';
|
import { Button, Flex, Table as TableCompo, Typography } from '@strapi/design-system';
|
||||||
import { Trash } from '@strapi/icons';
|
import { Trash } from '@strapi/icons';
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import { useIntl } from 'react-intl';
|
import { useIntl } from 'react-intl';
|
||||||
@ -129,11 +129,8 @@ const Table = ({
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{selectedEntries.length > 0 && (
|
{selectedEntries.length > 0 && (
|
||||||
<Box>
|
|
||||||
<Box paddingBottom={4}>
|
|
||||||
<Flex justifyContent="space-between">
|
|
||||||
<Flex gap={3}>
|
<Flex gap={3}>
|
||||||
<Typography variant="epsilon" textColor="neutral600">
|
<Typography variant="omega" textColor="neutral500">
|
||||||
{formatMessage(
|
{formatMessage(
|
||||||
{
|
{
|
||||||
id: 'content-manager.components.TableDelete.label',
|
id: 'content-manager.components.TableDelete.label',
|
||||||
@ -155,9 +152,6 @@ const Table = ({
|
|||||||
</Button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
</Flex>
|
</Flex>
|
||||||
</Flex>
|
|
||||||
</Box>
|
|
||||||
</Box>
|
|
||||||
)}
|
)}
|
||||||
<TableCompo colCount={COL_COUNT} rowCount={ROW_COUNT} footer={footer}>
|
<TableCompo colCount={COL_COUNT} rowCount={ROW_COUNT} footer={footer}>
|
||||||
<TableHead
|
<TableHead
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user