保誠-保戶業務員媒合平台
Tomas
2023-12-25 f065760fa7df1f88747395ab4b55349ce8b2faf0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<template>
    <div class="pam-background">
        <NavBar></NavBar>
        <div class="pam-container">
            <Nuxt></Nuxt>
        </div>
        <Footer></Footer>
    </div>
</template>
<script lang="ts">
    import { Component ,Vue } from "nuxt-property-decorator";
    @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: calc(100vh - $MOB_NAV_BAR);
        .pam-container{
            flex: 1;
        }
    }
    @include desktop{
        .pam-background {
            min-height: calc(100vh - $DESKTOP_NAV_BAR);
            padding-top:$DESKTOP_NAV_BAR;
        }
    }
 
</style>