Skip to content

Instantly share code, notes, and snippets.

@alfredomtzrmz
Created February 26, 2020 02:21
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 alfredomtzrmz/dc937d5e5d9e769964fed181c4c1da1c to your computer and use it in GitHub Desktop.
Save alfredomtzrmz/dc937d5e5d9e769964fed181c4c1da1c to your computer and use it in GitHub Desktop.
Custom Media Queries
@media (min-width: 640px) and (max-width: 767px) {
/* mobile */
}
@media (min-width: 768px) and (max-width: 1023px) {
/* tablet */
}
@media (min-width: 1024px) {
/* desktop */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment