aboutsummaryrefslogtreecommitdiffstats
path: root/layouts
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2024-03-13 00:17:32 +0000
committerLeonardo Bishop <me@leonardobishop.com>2024-03-13 00:17:32 +0000
commit543aa0cd4a461285298d33a90ab3f11a9f084ca5 (patch)
treeffbaec5f495b2cf8b891690642df161464ac6e95 /layouts
parenta072c91cc0dc26e417c51f666e8547e08ef40942 (diff)
Add home page
Diffstat (limited to 'layouts')
-rw-r--r--layouts/default.vue18
1 files changed, 16 insertions, 2 deletions
diff --git a/layouts/default.vue b/layouts/default.vue
index 80bf29e..087f064 100644
--- a/layouts/default.vue
+++ b/layouts/default.vue
@@ -4,5 +4,19 @@
<template>
<SiteHeader />
- <slot />
-</template> \ No newline at end of file
+ <div id="content">
+ <slot />
+ </div>
+</template>
+
+<style scoped>
+#content {
+ display: flex;
+ height: calc(100vh - 73px);
+ flex-direction: row;
+}
+
+#content {
+ width: 100%;
+}
+</style> \ No newline at end of file