Skip to content

Instantly share code, notes, and snippets.

@t2k
Created November 19, 2014 21:56
Show Gist options
  • Save t2k/0d9303ed4fe60766b6e9 to your computer and use it in GitHub Desktop.
Save t2k/0d9303ed4fe60766b6e9 to your computer and use it in GitHub Desktop.
Scrollable support classes
// marginal support of endless scrolling
.scrollable-container {
max-height: 500px;
overflow-y: scroll;
}
.scrollable-inner {
max-height:100%;
}
@media all and (min-width: 1023px) {
.scrollable-container {
max-height: 640px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment