From eeab4835f8a1dfcab622facf33eb5ae7f523f010 Mon Sep 17 00:00:00 2001 From: Mila <Mila@pollex.com.tw> Date: 星期五, 19 十一月 2021 07:58:30 +0800 Subject: [PATCH] update:TODO#130450/130484 快速篩選: 1. 不顯示上線狀態 2. 選擇器增加確認按鈕 3. desktop選擇器跑板問題 --- PAMapp/layouts/home.vue | 35 ++++++++++++++++++++++++++++++++--- 1 files changed, 32 insertions(+), 3 deletions(-) diff --git a/PAMapp/layouts/home.vue b/PAMapp/layouts/home.vue index 861406b..932b08e 100644 --- a/PAMapp/layouts/home.vue +++ b/PAMapp/layouts/home.vue @@ -1,7 +1,36 @@ <template> - <div> + <div class="pam-background"> <NavBar></NavBar> - <Nuxt></Nuxt> + <div class="pam-container"> + <Nuxt></Nuxt> + </div> <Footer></Footer> </div> -</template> \ No newline at end of file +</template> +<script lang="ts"> + import { Component ,Vue } from "nuxt-property-decorator"; + import * as _ from 'lodash'; + @Component + export default class DefaultLayout extends Vue { + + + } +</script> +<style lang="scss" scoped> + .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