Skip to content

Commit

Permalink
Merge pull request #129 from frontendcafe/feat-main/breakpoints-setup…
Browse files Browse the repository at this point in the history
…-for-resposive

feat-main/(theme/index.ts): breakpoints setup for resposive
  • Loading branch information
mariodev9 authored Sep 8, 2022
2 parents 20c2097 + 882351e commit a2ddd11
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 @@ -209,4 +209,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 a2ddd11

Please sign in to comment.