Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix button group styles
  • Loading branch information
ZeeshanTamboli committed Dec 16, 2025
commit c167a8bfa6a0f48bbb806289a7343a8acb8ba24f
13 changes: 6 additions & 7 deletions packages/mui-material/src/ButtonGroup/ButtonGroup.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ const ButtonGroupRoot = styled('div', {
props: { variant: 'contained' },
style: {
boxShadow: (theme.vars || theme).shadows[2],
[`& .${buttonGroupClasses.grouped}`]: {
boxShadow: 'none',
'&:hover': {
boxShadow: 'none',
},
},
},
},
{
Expand Down Expand Up @@ -239,13 +245,6 @@ const ButtonGroupRoot = styled('div', {
],
[`& .${buttonGroupClasses.grouped}`]: {
minWidth: 40,
boxShadow: 'none',
props: { variant: 'contained' },
style: {
'&:hover': {
boxShadow: 'none',
},
},
},
})),
);
Expand Down
Loading