Increase breakpoints (#2346)
This commit is contained in:
parent
58824f1486
commit
0db6ef6377
1 changed files with 7 additions and 0 deletions
|
@ -1,6 +1,12 @@
|
|||
import { Theme } from "@material-ui/core/styles";
|
||||
|
||||
const breakpoints = ({
|
||||
keys: ["xs", "sm", "md", "lg", "xl"],
|
||||
values: { lg: 1680, md: 1280, sm: 600, xl: 1920, xs: 0 },
|
||||
} as unknown) as Theme["breakpoints"];
|
||||
|
||||
const themeOverrides: Partial<Theme> = {
|
||||
breakpoints,
|
||||
overrides: {
|
||||
MuiTableCell: {
|
||||
body: {
|
||||
|
@ -15,4 +21,5 @@ const themeOverrides: Partial<Theme> = {
|
|||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default themeOverrides;
|
||||
|
|
Loading…
Reference in a new issue