Last active
August 12, 2020 21:45
-
-
Save pablohdzvizcarra/184fefac84f71cccf324966824041e43 to your computer and use it in GitHub Desktop.
media querys style-components
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const breakpoints = { | |
xs: "480px", | |
sm: "768px", | |
md: "992px", | |
lg: "1200px", | |
xg: "1600px", | |
}; | |
// how to use them | |
${respondTo.xs` | |
`} | |
${respondTo.sm` | |
`} | |
${respondTo.md` | |
`} | |
${respondTo.lg` | |
`} | |
${respondTo.xg` | |
`} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment