Skip to content

Commit

Permalink
feat: favorites take less space (#8888)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew authored Nov 29, 2024
1 parent c18a353 commit b6d4a5f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const FavoriteIconHeader: VFC<IFavoriteIconHeaderProps> = ({
>
<IconButton
sx={{
mx: -0.75,
mx: -2.75,
my: -1,
display: 'flex',
alignItems: 'center',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ 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),
paddingLeft: theme.spacing(0),
paddingRight: theme.spacing(1),
}));

const StyledIconButton = styled(IconButton)(({ theme }) => ({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,6 @@ export const ProjectFeatureToggles = ({
enableSorting: false,
enableHiding: false,
meta: {
align: 'center',
width: '1%',
},
}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ interface IRowSelectCellProps {
const StyledBoxCell = styled(Box)(({ theme }) => ({
display: 'flex',
justifyContent: 'center',
paddingLeft: theme.spacing(2),
paddingRight: theme.spacing(1),
paddingLeft: theme.spacing(1),
paddingRight: theme.spacing(0),
}));

export const RowSelectCell: FC<IRowSelectCellProps> = ({
Expand Down

0 comments on commit b6d4a5f

Please sign in to comment.