Separate Client Portal & Dashboard
This commit is contained in:
26
frontend/dashboard/src/theme/overrides/Paper.ts
Normal file
26
frontend/dashboard/src/theme/overrides/Paper.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
import { Theme } from '@mui/material/styles';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
export default function Paper(theme: Theme) {
|
||||
return {
|
||||
MuiPaper: {
|
||||
defaultProps: {
|
||||
elevation: 0,
|
||||
},
|
||||
|
||||
variants: [
|
||||
{
|
||||
props: { variant: 'outlined' },
|
||||
style: { borderColor: theme.palette.grey[500_12] },
|
||||
},
|
||||
],
|
||||
|
||||
styleOverrides: {
|
||||
root: {
|
||||
backgroundImage: 'none',
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user