CommonLayout.vue 693 Bytes
Newer Older
wb-ct393452's avatar
wb-ct393452 committed
1 2 3
<template>
    <div class="common-layout">
        <div class="content">
水落(YangLei)'s avatar
水落(YangLei) committed
4
            <slot />
wb-ct393452's avatar
wb-ct393452 committed
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
        </div>
    </div>
</template>

<style scoped lang="less">
.common-layout {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: auto;
    background-color: @layout-body-background;
    background-image: url('https://gw.alipayobjects.com/zos/rmsportal/TVYTbAXWheQpRcWDaDMu.svg');
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 110px;
    background-size: 100%;
    .content {
        padding: 32px 0;
        flex: 1;
        @media (min-width: 768px) {
            padding: 112px 0 24px;
        }
    }
}
</style>