Created
February 26, 2020 02:21
-
-
Save mtzrmzia/dc937d5e5d9e769964fed181c4c1da1c to your computer and use it in GitHub Desktop.
Custom Media Queries
This file contains 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
@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