Skip to content

Instantly share code, notes, and snippets.

@jonjohnjohnson
Created November 28, 2017 06:03
Show Gist options
  • Save jonjohnjohnson/e3babcef5fe6bc4d6ac8086655bd6522 to your computer and use it in GitHub Desktop.
Save jonjohnjohnson/e3babcef5fe6bc4d6ac8086655bd6522 to your computer and use it in GitHub Desktop.
mdn docs sticky sidenav proposal styles...
/* check this demo video out */
/* http://cl.ly/nxz6 */
@media screen and (min-height: 42.5em) and (min-width: 47.9385em) {
@supports (position: sticky) {
.toc {
height: 100vh;
width: 18em;
overflow: auto;
}
.toc + .clear {
margin-left: 18em;
margin-top: -100vh;
}
.toc-head {
padding-top: 20px;
}
.toc-links {
display: block;
}
.toc-links a {
white-space: normal;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment