Skip to content

Commit

Permalink
fix: MDYSwitch-thumb size
Browse files Browse the repository at this point in the history
  • Loading branch information
keiko233 committed Mar 19, 2024
1 parent 2ff8f22 commit 1928442
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/common/mdy-switch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ const MDYSwitch = styled((props: MDYSwitchProps) => {
},
"& .MuiSwitch-thumb": {
boxShadow: "none",
width: loading ? 24 : 16,
height: loading ? 24 : 16,
width: loading ? 24 : 15,
height: loading ? 24 : 15,
margin: loading ? -2 : 3,
color: checked
? theme.palette.getContrastText(theme.palette.primary.main)
Expand Down

0 comments on commit 1928442

Please sign in to comment.