Skip to content

Instantly share code, notes, and snippets.

@jgthms
Created August 6, 2017 10:51
Show Gist options
  • Select an option

  • Save jgthms/b1bcff8443617496746dcf795789ed60 to your computer and use it in GitHub Desktop.

Select an option

Save jgthms/b1bcff8443617496746dcf795789ed60 to your computer and use it in GitHub Desktop.
: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