修改画布显示不全及操作优化

This commit is contained in:
taozi
2021-09-23 10:33:41 +08:00
parent aeba14d544
commit e4f9d8f027
2 changed files with 8 additions and 4 deletions

View File

@ -114,7 +114,7 @@ export default {
.panelBox {
width: 0px;
min-height: 100%;
height: 100%;
display: flex;
overflow: hidden;
transition: 0.2s width ease;
@ -166,6 +166,9 @@ export default {
border-left: 1px solid #f0f3f4;
width: 186px;
padding: 20px 0;
height: auto;
overflow-y: auto;
padding-bottom:40px;
.itemBox {
h3 {

View File

@ -146,7 +146,8 @@ export default {
position: relative;
display: flex;
flex-direction: column;
height: 100%;
height:calc(100vh - 84px);
overflow: hidden;
.topBox {
height: 52px;
@ -188,7 +189,7 @@ export default {
.bottomWarp {
flex: 1;
display: flex;
height: 0;
overflow:hidden
}
.leftBox {
height: 100%;
@ -212,4 +213,4 @@ export default {
overflow: auto;
}
}
</style>
</style>