mirror of
https://github.com/strapi/strapi.git
synced 2025-12-04 11:02:12 +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 { 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 PropTypes from 'prop-types';
|
||||
import { useIntl } from 'react-intl';
|
||||
@ -129,11 +129,8 @@ const Table = ({
|
||||
return (
|
||||
<>
|
||||
{selectedEntries.length > 0 && (
|
||||
<Box>
|
||||
<Box paddingBottom={4}>
|
||||
<Flex justifyContent="space-between">
|
||||
<Flex gap={3}>
|
||||
<Typography variant="epsilon" textColor="neutral600">
|
||||
<Typography variant="omega" textColor="neutral500">
|
||||
{formatMessage(
|
||||
{
|
||||
id: 'content-manager.components.TableDelete.label',
|
||||
@ -155,9 +152,6 @@ const Table = ({
|
||||
</Button>
|
||||
)}
|
||||
</Flex>
|
||||
</Flex>
|
||||
</Box>
|
||||
</Box>
|
||||
)}
|
||||
<TableCompo colCount={COL_COUNT} rowCount={ROW_COUNT} footer={footer}>
|
||||
<TableHead
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user