Skip to content

Instantly share code, notes, and snippets.

@pablohdzvizcarra
Last active August 12, 2020 21:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pablohdzvizcarra/184fefac84f71cccf324966824041e43 to your computer and use it in GitHub Desktop.
Save pablohdzvizcarra/184fefac84f71cccf324966824041e43 to your computer and use it in GitHub Desktop.
media querys style-components
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