修改样式

This commit is contained in:
chenjianxing 2020-04-27 17:36:00 +08:00
parent ba6b8dce15
commit 362620b887
4 changed files with 14 additions and 23 deletions

View File

@ -14,7 +14,7 @@
<style scoped> <style scoped>
#body { #body {
width: 100%; width: 100%;
height: calc(100vh - 40px); height: calc(100vh - 80px);
background-color: #F5F5F5; background-color: #F5F5F5;
} }

View File

@ -33,8 +33,20 @@
position: relative; position: relative;
border: 1px solid #EBEEF5; border: 1px solid #EBEEF5;
box-sizing: border-box; box-sizing: border-box;
min-height: calc(100vh - 80px);
background: white; background: white;
} }
.node-tree {
margin: 3%;
}
.case-container {
min-height: 600px;
margin-top: 0;
margin-left: 0;
}
</style> </style>
<style scoped> <style scoped>

View File

@ -223,17 +223,6 @@
<style scoped> <style scoped>
.node-tree {
margin: 3%;
}
.case-container {
height: calc(100vh - 150px);
min-height: 600px;
margin-top: 0;
margin-left: 0;
}
.test-case-list { .test-case-list {
padding: 15px; padding: 15px;
} }

View File

@ -1,6 +1,6 @@
<template> <template>
<div class="main-content"> <div class="main-content">
<el-container class="view-container"> <el-container class="case-container">
<el-aside class="tree-aside"> <el-aside class="tree-aside">
<select-menu <select-menu
:data="testPlans" :data="testPlans"
@ -112,16 +112,6 @@
<style scoped> <style scoped>
.node-tree {
margin: 3%;
}
.view-container {
height: calc(100vh - 150px);
min-height: 600px;
}
.el-main { .el-main {
padding: 15px; padding: 15px;
} }