fix: apply the same border for button groups (#10092)

This commit is contained in:
Kyle Carberry
2023-10-05 17:44:45 -05:00
committed by GitHub
parent 14c8824c83
commit 4ad080c3b9
+10
View File
@@ -206,6 +206,16 @@ dark = createTheme(dark, {
},
},
},
MuiButtonGroup: {
styleOverrides: {
root: {
">button:hover+button": {
// The !important is unfortunate, but necessary for the border.
borderLeftColor: `${colors.gray[10]} !important`,
},
},
},
},
MuiTableContainer: {
styleOverrides: {
root: {