Created
August 6, 2017 10:51
-
-
Save jgthms/b1bcff8443617496746dcf795789ed60 to your computer and use it in GitHub Desktop.
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
| :root { | |
| --sizeBody: 16px; /* 1rem = 16px */ | |
| --navHeight: 4rem; /* 4 * 16px = 64px */ | |
| } | |
| .nav { | |
| height: var(--navHeight); | |
| } | |
| @media (min-width: 1000px) { | |
| :root { | |
| --sizeBody: 20px; | |
| } | |
| /* | |
| --navHeight is still | |
| 4 * 16px = 64px | |
| and NOT | |
| 4 * 20px = 80px | |
| */ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment