Created
October 15, 2020 12:44
-
-
Save ross-u/294d371a1d267449d60d07b5a9c81cc6 to your computer and use it in GitHub Desktop.
Media queries - universal and simple M1
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
@media screen and (max-width: 700px) { | |
} | |
@media screen and (max-width: 990px) and (min-width: 710px) { | |
} | |
@media screen and (min-width: 1000px) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment