Separate Client Portal & Dashboard
This commit is contained in:
29
frontend/dashboard/src/theme/overrides/ControlLabel.ts
Normal file
29
frontend/dashboard/src/theme/overrides/ControlLabel.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import { Theme } from '@mui/material/styles';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
export default function ControlLabel(theme: Theme) {
|
||||
return {
|
||||
MuiFormControlLabel: {
|
||||
styleOverrides: {
|
||||
label: {
|
||||
...theme.typography.body2
|
||||
}
|
||||
}
|
||||
},
|
||||
MuiFormHelperText: {
|
||||
styleOverrides: {
|
||||
root: {
|
||||
marginTop: theme.spacing(1)
|
||||
}
|
||||
}
|
||||
},
|
||||
MuiFormLabel: {
|
||||
styleOverrides: {
|
||||
root: {
|
||||
color: theme.palette.text.disabled
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user