Skip to content

Instantly share code, notes, and snippets.

@ajitid
Last active September 18, 2020 19:40
Show Gist options
  • Save ajitid/d95b1724eba7dd40cb84bae109fd936c to your computer and use it in GitHub Desktop.
Save ajitid/d95b1724eba7dd40cb84bae109fd936c to your computer and use it in GitHub Desktop.
Scrollable content
.section {
display: flex;
flex-direction: column;
}
/* follwing class is not needed btw, nor setting container `Section`'s height to 100% */
.sectionHeader {
flex-shrink: 0;
}
.sectionContent {
flex: 1 1 auto;
overflow-y: auto;
height: 0px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment