style(接口测试): 修复场景全屏编辑后,步骤数据(响应体)框展示不全

This commit is contained in:
RubyLiu 2023-06-28 18:03:44 +08:00 committed by 副驾仙人
parent effd1ccb1a
commit 2f1e8939dd
1 changed files with 5 additions and 1 deletions

View File

@ -200,7 +200,7 @@
</div>
</ms-aside-container>
<ms-main-container v-loading="loading">
<ms-main-container class="card-content" v-loading="loading">
<div v-if="!loading">
<!-- 第一层当前节点内容-->
<ms-component-config
@ -1325,6 +1325,10 @@ export default {
</script>
<style scoped>
.card-content {
height: calc(100vh - 37px);
overflow-y: auto;
}
.ms-col-one {
margin-top: 10px;
}