Position the footer on the bottom of the screen

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2020-10-09 18:13:15 +02:00
parent c296381ed6
commit 646f298e0b
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 12 additions and 1 deletions

View File

@ -1,8 +1,9 @@
<template>
<div id="mobilizon">
<NavBar />
<div class="container" v-if="config && config.demoMode">
<div v-if="config && config.demoMode">
<b-message
class="container"
type="is-danger"
:title="$t('Warning').toLocaleUpperCase()"
closable
@ -112,4 +113,14 @@ $mdi-font-path: "~@mdi/font/fonts";
@import "~@mdi/font/scss/materialdesignicons";
@import "common";
#mobilizon {
min-height: 100vh;
display: flex;
flex-direction: column;
main {
flex-grow: 1;
}
}
</style>