Skip to content

Instantly share code, notes, and snippets.

@grampelberg
Created July 14, 2020 22:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grampelberg/4c026c7cad8168929d7794b64a650e68 to your computer and use it in GitHub Desktop.
Save grampelberg/4c026c7cad8168929d7794b64a650e68 to your computer and use it in GitHub Desktop.
:root {
--toolbar-regular-height: 56px;
}
@media (min-width: 0px) and (orientation: landscape) {
:root {
--toolbar-regular-height: 48px;
}
}
@media (min-width: 600px) {
:root {
--toolbar-regular-height: 64px;
}
}
.h-screen-nav {
height: calc(100vh - var(--toolbar-regular-height));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment