2020-07-05 09:40:54 +08:00

24 lines
401 B
Vue

<template>
<div class="main">
<slot></slot>
</div>
</template>
<script>
export default {};
</script>
<style lang="less" scoped>
@import "../../global.less";
@sum: @topHeight + @bottomHeight;
.main {
margin: 0 auto;
margin-top: @topHeight;
min-height: calc(~"100vh" - @sum);
width: 90%;
min-width: 5rem;
font-size: 0.14rem;
background-color: rgba(249, 231, 62, 0.2);
}
</style>