Fix footer not sticking to bottom in short pages

Fixes https://github.com/simonw/datasette/issues/1129
This commit is contained in:
Abdussamet Koçak 2020-12-04 10:28:18 +03:00 committed by GitHub
commit 8d4c69c6fb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -65,6 +65,12 @@ em {
body {
/* sticky footer */
display: flex;
flex-direction: column;
min-height: 100vh;
/* /sticky footer */
margin: 0;
padding: 0;
font-family: "Helvetica Neue", sans-serif;
@ -330,6 +336,7 @@ button.button-as-link:focus {
/* Body */
section.content {
flex-grow: 1; /* sticky footer */
margin: 0 1rem;
}