Increase breakpoints (#2346)

This commit is contained in:
Timur Carpeev 2022-10-06 10:15:16 +02:00 committed by GitHub
parent 58824f1486
commit 0db6ef6377
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,12 @@
import { Theme } from "@material-ui/core/styles"; 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> = { const themeOverrides: Partial<Theme> = {
breakpoints,
overrides: { overrides: {
MuiTableCell: { MuiTableCell: {
body: { body: {
@ -15,4 +21,5 @@ const themeOverrides: Partial<Theme> = {
}, },
}, },
}; };
export default themeOverrides; export default themeOverrides;