
Co-authored-by: andrzejewsky <vox3r69@gmail.com> Co-authored-by: timur <timuric@gmail.com> Co-authored-by: Krzysztof Żuraw <9116238+krzysztofzuraw@users.noreply.github.com>
12 lines
305 B
TypeScript
12 lines
305 B
TypeScript
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,
|
|
};
|
|
|
|
export default themeOverrides;
|