@brightlayer-ui/react-themes
Version:
React themes for Brightlayer UI applications
36 lines (35 loc) • 1.21 kB
JavaScript
import { BLUIColors } from '@brightlayer-ui/colors';
export default {
styleOverrides: {
root: ({ theme }) => ({
'&.Mui-completed': {
'& .MuiStepLabel-iconContainer:before': {
content: '""',
position: 'absolute',
display: 'block',
top: '5%',
right: '5%',
bottom: '5%',
left: '5%',
backgroundColor: theme.vars.palette.background.paper,
borderRadius: '50%',
},
},
...theme.applyStyles('dark', {
'&.Mui-completed': {
'& .MuiStepLabel-iconContainer:before': {
content: '""',
position: 'absolute',
display: 'block',
top: '5%',
right: '5%',
bottom: '5%',
left: '5%',
backgroundColor: BLUIColors.white[50],
borderRadius: '50%',
},
},
}),
}),
},
};