aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/default.vue
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/default.vue')
-rw-r--r--layouts/default.vue6
1 files changed, 5 insertions, 1 deletions
diff --git a/layouts/default.vue b/layouts/default.vue
index 087f064..b01df84 100644
--- a/layouts/default.vue
+++ b/layouts/default.vue
@@ -7,12 +7,16 @@
<div id="content">
<slot />
</div>
+
+ <SiteFooter />
</template>
<style scoped>
#content {
display: flex;
- height: calc(100vh - 73px);
+ height: calc(100vh - 114px);
+ max-height: calc(100vh - 114px);
+ overflow-y: auto;
flex-direction: row;
}