菜单折叠,tab栏折叠

This commit is contained in:
zhouyuejun
2018-11-27 18:16:25 +08:00
parent 5470628d7f
commit bb2779e6e8
10 changed files with 219 additions and 85 deletions
+16 -3
View File
@@ -1,7 +1,7 @@
.main-page {
width: 100%;
height: 100%;
overflow-y: scroll;
overflow-y: auto;
padding: 15px 10px;
background-color: #fff;
.page-content {
@@ -31,7 +31,7 @@
.table-container{
display: inline-block;
// border: 1px solid #ccc;
width: 75%;
width: 100%;
height: 700px;
overflow: auto;
box-shadow: 0 0 1px .5px #ddd;
@@ -56,7 +56,7 @@
display: inline-block;
// box-shadow: 0 0 1px .5px #ddd;
vertical-align: top;
width: 24%;
width: 0;
margin-left: 1%;
height: 700px;
/deep/ .ant-tabs-bar{
@@ -72,6 +72,19 @@
}
}
}
.table-c{
width: 75%;
}
.table-o{
width: 100%;
}
.tab-c{
width: 0;
display: none;
}
.tab-o{
width: 24%;
}
}
}
}