24 lines
401 B
Vue
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>
|