Skip to content

Instantly share code, notes, and snippets.

@ryanmorr
Created January 30, 2024 17:10
Show Gist options
  • Save ryanmorr/1a56b1df324081a317c2df610f41b20a to your computer and use it in GitHub Desktop.
Save ryanmorr/1a56b1df324081a317c2df610f41b20a to your computer and use it in GitHub Desktop.
Some default CSS breakpoints inspired by common device resolutions
@media (min-width: 640px) {
/* Small */
}
@media (min-width: 768px) {
/* Medium */
}
@media (min-width: 1024px) {
/* Large */
}
@media (min-width: 1280px) {
/* Extra Large */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment