1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

fix: adjust table spacing (#6715)

This commit is contained in:
Mateusz Kwasniewski 2024-03-27 14:30:05 +01:00 committed by GitHub
parent e8c50f55d5
commit d7dc01d396
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View File

@ -28,7 +28,8 @@ const HeaderCell = <T extends object>(header: Header<T, unknown>) => {
onClick={() => column.toggleSorting()}
styles={{
borderRadius: '0px',
padding: 0,
paddingTop: 0,
paddingBottom: 0,
width,
maxWidth: fixedWidth,
minWidth: fixedWidth,

View File

@ -5,6 +5,7 @@ import StarBorderIcon from '@mui/icons-material/StarBorder';
import { ConditionallyRender } from 'component/common/ConditionallyRender/ConditionallyRender';
const StyledCell = styled(Box)(({ theme }) => ({
paddingLeft: theme.spacing(2),
paddingRight: theme.spacing(0.5),
}));