Merge branch 'sticky-footer' into 'develop'

Ensure the footer always stays at the bottom of the page

See merge request funkwhale/funkwhale!718
This commit is contained in:
Eliot Berriot 2019-04-12 16:48:05 +02:00
commit 048198fc81
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1 @@
Ensure the footer always stays at the bottom of the page

View File

@ -88,8 +88,14 @@ body {
font-family: "Avenir", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: flex;
min-height: 100vh;
flex-direction: column;
}
#app > main, #app > .main {
flex: 1;
}
.instance-chooser {
margin-top: 2em;
}