Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
fix radio button background (#1061)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinavkgrd committed Apr 15, 2023
2 parents 7e1eff1 + ec855d1 commit 12565e7
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ const PublicShareSwitch = styled((props: SwitchProps) => (
},
'& .MuiSwitch-track': {
borderRadius: 22 / 2,
backgroundColor: theme.palette.mode === 'light' ? '#E9E9EA' : '#39393D',
backgroundColor:
theme.palette.mode === 'light'
? '#E9E9EA'
: theme.colors.fill.muted,
opacity: 1,
transition: theme.transitions.create(['background-color'], {
duration: 500,
Expand Down

0 comments on commit 12565e7

Please sign in to comment.