From 0db6ef6377347bfa90b8718dc0ad719534dab741 Mon Sep 17 00:00:00 2001 From: Timur Carpeev Date: Thu, 6 Oct 2022 10:15:16 +0200 Subject: [PATCH] Increase breakpoints (#2346) --- src/themeOverrides.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/themeOverrides.ts b/src/themeOverrides.ts index ac8268892..c05c16016 100644 --- a/src/themeOverrides.ts +++ b/src/themeOverrides.ts @@ -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 = { + breakpoints, overrides: { MuiTableCell: { body: { @@ -15,4 +21,5 @@ const themeOverrides: Partial = { }, }, }; + export default themeOverrides;