Separate Client Portal & Dashboard
This commit is contained in:
23
frontend/dashboard/src/theme/overrides/Autocomplete.ts
Normal file
23
frontend/dashboard/src/theme/overrides/Autocomplete.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import { Theme } from '@mui/material/styles';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
export default function Autocomplete(theme: Theme) {
|
||||
return {
|
||||
MuiAutocomplete: {
|
||||
styleOverrides: {
|
||||
paper: {
|
||||
boxShadow: theme.customShadows.dropdown,
|
||||
},
|
||||
listbox: {
|
||||
padding: theme.spacing(0, 1),
|
||||
'& .MuiAutocomplete-option': {
|
||||
padding: theme.spacing(1),
|
||||
margin: theme.spacing(1, 0),
|
||||
borderRadius: theme.shape.borderRadius,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user