From bf6ad8eecf59e08504178d97625b5ddd080f1d08 Mon Sep 17 00:00:00 2001 From: Mila <Mila@pollex.com.tw> Date: 星期三, 17 十一月 2021 09:56:21 +0800 Subject: [PATCH] update 預約清單更改 layout --- PAMapp/layouts/home.vue | 13 ++++++++++++- 1 files changed, 12 insertions(+), 1 deletions(-) diff --git a/PAMapp/layouts/home.vue b/PAMapp/layouts/home.vue index 509d1ee..932b08e 100644 --- a/PAMapp/layouts/home.vue +++ b/PAMapp/layouts/home.vue @@ -1,14 +1,18 @@ <template> <div class="pam-background"> <NavBar></NavBar> - <Nuxt></Nuxt> + <div class="pam-container"> + <Nuxt></Nuxt> + </div> <Footer></Footer> </div> </template> <script lang="ts"> import { Component ,Vue } from "nuxt-property-decorator"; + import * as _ from 'lodash'; @Component export default class DefaultLayout extends Vue { + } </script> @@ -16,10 +20,17 @@ .pam-background { background-color: #F8F9FA; padding-top:$MOB_NAV_BAR; + display: flex; + flex-direction: column; + min-height: 100vh; + .pam-container{ + flex: 1; + } } @include desktop{ .pam-background { padding-top:$DESKTOP_NAV_BAR; } } + </style> \ No newline at end of file -- Gitblit v1.8.0