aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/default.vue
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2024-03-13 23:35:13 +0000
committerLeonardo Bishop <me@leonardobishop.com>2024-03-13 23:35:13 +0000
commit9ea8892c906ea8ee9a7644f9f126a1c2377e1c98 (patch)
tree77e2c1e03069894a317a6cb054ed645504c624c9 /layouts/default.vue
parenta51aefaeaa855f209ec608743a44a824fd2d75ed (diff)
Add git sha1 to footer
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;
}