From 882351e0a0caa381e92f0f9e2a1844bcd2387d80 Mon Sep 17 00:00:00 2001 From: Dafne Caneda Date: Tue, 6 Sep 2022 20:10:37 -0300 Subject: [PATCH] feat-main/(theme/index.ts): breakpoints setup for resposive --- modules/shared/theme/index.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/shared/theme/index.ts b/modules/shared/theme/index.ts index 260d1ab..598c3e1 100644 --- a/modules/shared/theme/index.ts +++ b/modules/shared/theme/index.ts @@ -85,4 +85,10 @@ const config: Theme["config"] = { useSystemColorMode: false, }; -export const theme = extendTheme({ colors, components, fonts, config }); +const breakpoints = { + mobile: "360px", + tablet: "834px", + desktop: "1440px", +}; + +export const theme = extendTheme({ colors, components, fonts, config, breakpoints });