saleor-dashboard/src/themeOverrides.ts
Wojciech Mista 9574e6a92c
Macaw UI update (#2512)
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>
2022-11-24 13:16:51 +01:00

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;