Skip to content

Commit

Permalink
fix: adjust table spacing (#6715)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew committed Mar 27, 2024
1 parent e8c50f5 commit d7dc01d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Expand Up @@ -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,
Expand Down
Expand Up @@ -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),
}));

Expand Down

0 comments on commit d7dc01d

Please sign in to comment.