Skip to content

Commit

Permalink
feat(useBreakpoints): add breakpoints for Master CSS (#2529)
Browse files Browse the repository at this point in the history
  • Loading branch information
imsus committed Dec 16, 2022
1 parent ebd4852 commit 30c5b09
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions packages/core/useBreakpoints/breakpoints.ts
Expand Up @@ -74,3 +74,21 @@ export const breakpointsSematic = {
laptopL: 1440,
desktop4K: 2560,
}

/**
* Breakpoints from Master CSS
*
* @see https://docs.master.co/css/breakpoints
*/
export const breakpointsMasterCss = {
'3xs': 360,
'2xs': 480,
'xs': 600,
'sm': 768,
'md': 1024,
'lg': 1280,
'xl': 1440,
'2xl': 1600,
'3xl': 1920,
'4xl': 2560,
}

0 comments on commit 30c5b09

Please sign in to comment.