Skip to content

Commit

Permalink
revert unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mnajdova committed Sep 4, 2024
1 parent 5bfc2db commit 34a9162
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/mui-material/src/Radio/Radio.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const RadioRoot = styled(SwitchBase, {
{
props: { color: 'default', disabled: false, disableRipple: false },
style: {
[`&:hover`]: {
'&:hover': {
backgroundColor: theme.vars
? `rgba(${theme.vars.palette.action.activeChannel} / ${theme.vars.palette.action.hoverOpacity})`
: alpha(theme.palette.action.active, theme.palette.action.hoverOpacity),
Expand All @@ -66,7 +66,7 @@ const RadioRoot = styled(SwitchBase, {
.map(([color]) => ({
props: { color, disabled: false, disableRipple: false },
style: {
[`&:hover`]: {
'&:hover': {
backgroundColor: theme.vars
? `rgba(${theme.vars.palette[color].mainChannel} / ${theme.vars.palette.action.hoverOpacity})`
: alpha(theme.palette[color].main, theme.palette.action.hoverOpacity),
Expand Down

0 comments on commit 34a9162

Please sign in to comment.