diff options
Diffstat (limited to 'layouts')
| -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 |
