diff options
| author | Leonardo Bishop <me@leonardobishop.com> | 2024-03-13 00:17:32 +0000 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.com> | 2024-03-13 00:17:32 +0000 |
| commit | 543aa0cd4a461285298d33a90ab3f11a9f084ca5 (patch) | |
| tree | ffbaec5f495b2cf8b891690642df161464ac6e95 /layouts/default.vue | |
| parent | a072c91cc0dc26e417c51f666e8547e08ef40942 (diff) | |
Add home page
Diffstat (limited to 'layouts/default.vue')
| -rw-r--r-- | layouts/default.vue | 18 |
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 |
