Skip to content

Commit

Permalink
feat-main/(theme/index.ts): breakpoints setup for resposive
Browse files Browse the repository at this point in the history
  • Loading branch information
dafnecaneda committed Sep 6, 2022
1 parent 150688d commit 882351e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion modules/shared/theme/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 });

0 comments on commit 882351e

Please sign in to comment.