diff options
Diffstat (limited to 'layouts')
| -rw-r--r-- | layouts/default.vue | 6 | ||||
| -rw-r--r-- | layouts/editor.vue | 5 |
2 files changed, 9 insertions, 2 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; } diff --git a/layouts/editor.vue b/layouts/editor.vue index d37a285..f1cccb2 100644 --- a/layouts/editor.vue +++ b/layouts/editor.vue @@ -19,13 +19,16 @@ sessionStore.setTaskTypeAliases(taskDefinitions.aliases); <slot /> </div> </div> + + <SiteFooter /> </template> <style lang="scss" scoped> #editor-container { display: flex; background-color: var(--color-background-soft); - max-height: calc(100vh - 73px); + height: calc(100vh - 114px); + max-height: calc(100vh - 114px); flex-direction: row; } |
