Fix sticky footer

main
mat ess 2023-01-28 13:22:25 -05:00
parent 95603a0e0a
commit d37694a1dc
1 changed files with 10 additions and 2 deletions

View File

@ -69,13 +69,21 @@ nav a {
} }
// Footer // Footer
html, body {
box-sizing: border-box;
height: 100%;
padding: 0;
margin: 0;
}
.content { .content {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
min-height: 100vh; min-height: 100%;
box-sizing: border-box;
} }
div.inner { main.inner {
flex-grow: 1; flex-grow: 1;
} }