Created
December 2, 2018 18:58
-
-
Save rmdashrfv/9710244b5d6f327c2846042be2223047 to your computer and use it in GitHub Desktop.
Mobile first media queries
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
| /* Base style */ | |
| { | |
| } | |
| /* Larger than mobile screen */ | |
| @media (min-width: 40.0rem) { | |
| } | |
| /* Larger than tablet screen */ | |
| @media (min-width: 80.0rem) { | |
| } | |
| /* Larger than desktop screen */ | |
| @media (min-width: 120.0rem) { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment