Skip to content

Commit

Permalink
fix: adjust favorite icon placement (#8930)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew authored Dec 6, 2024
1 parent 152dd76 commit 4b443e2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 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: -2.75,
mx: -0.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(0),
paddingRight: theme.spacing(1),
paddingLeft: theme.spacing(2),
paddingRight: theme.spacing(0.5),
}));

const StyledIconButton = styled(IconButton)(({ theme }) => ({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ interface IRowSelectCellProps {
const StyledBoxCell = styled(Box)(({ theme }) => ({
display: 'flex',
justifyContent: 'center',
paddingLeft: theme.spacing(1),
paddingRight: theme.spacing(0),
marginRight: theme.spacing(-2),
}));

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

0 comments on commit 4b443e2

Please sign in to comment.