2024-04-06 00:24:57 +08:00

36 lines
756 B
Vue

<template>
<a-layout-content class="content">
<Tabs />
<a-scrollbar style="height: 100%; overflow: auto" outer-class="scrollbar">
<div class="main">
<div class="main_box"></div>
</div>
</a-scrollbar>
</a-layout-content>
</template>
<script setup lang="ts">
import Tabs from "@/layout/components/Tabs/index.vue";
</script>
<style lang="scss" scoped>
.content {
height: calc(100vh - 60px - 30px); // 动态切类名-去掉footer
}
.scrollbar {
height: calc(100% - 40px);
}
.main {
padding: $padding;
.main_box {
height: 1000px;
background: #eee;
}
}
// 修改左侧滚动条宽度
:deep(.arco-scrollbar-thumb-direction-vertical .arco-scrollbar-thumb-bar) {
width: 4px;
margin-left: 8px;
}
</style>