7fb2a076 by zhaoqian

同意水平线的问题

1 parent 70b2a021
...@@ -34,12 +34,15 @@ ...@@ -34,12 +34,15 @@
34 <style scoped lang="less"> 34 <style scoped lang="less">
35 .el-tabs{ 35 .el-tabs{
36 height: calc(100% - 50px); 36 height: calc(100% - 50px);
37 /deep/.el-tabs__content{ 37 /deep/.el-tabs__content{
38 height: 100%; 38 height: 100%;
39 /deep/.el-tab-pane{ 39 /deep/.el-tab-pane{
40 height: 100%; 40 height: 100%;
41 } 41 }
42 background: #eaedf5; 42 background: #eaedf5;
43 } 43 }
44 /deep/ .el-tabs__item {
45 height: 48px;
46 }
44 } 47 }
45 </style> 48 </style>
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -171,6 +171,9 @@ ...@@ -171,6 +171,9 @@
171 height: 100%; 171 height: 100%;
172 } 172 }
173 background: #eaedf5; 173 background: #eaedf5;
174 /deep/ .el-tabs__item {
175 height: 48px;
176 }
174 } 177 }
175 .main { 178 .main {
176 width: 100%; 179 width: 100%;
......
...@@ -68,5 +68,8 @@ export default { ...@@ -68,5 +68,8 @@ export default {
68 } 68 }
69 background: #eaedf5; 69 background: #eaedf5;
70 } 70 }
71 /deep/ .el-tabs__item {
72 height: 48px;
73 }
71 } 74 }
72 </style> 75 </style>
......
...@@ -239,6 +239,9 @@ ...@@ -239,6 +239,9 @@
239 height: 100%; 239 height: 100%;
240 } 240 }
241 background: #eaedf5; 241 background: #eaedf5;
242 /deep/ .el-tabs__item {
243 height: 48px;
244 }
242 } 245 }
243 .main { 246 .main {
244 width: 100%; 247 width: 100%;
......
...@@ -197,6 +197,9 @@ ...@@ -197,6 +197,9 @@
197 } 197 }
198 background: #eaedf5; 198 background: #eaedf5;
199 } 199 }
200 /deep/ .el-tabs__item {
201 height: 48px;
202 }
200 .main { 203 .main {
201 width: 100%; 204 width: 100%;
202 height: 100%; 205 height: 100%;
......