style(editor): 拖动改变工作区左右边栏大小时不要出现滚动条

This commit is contained in:
roymondchen 2023-07-05 14:23:25 +08:00
parent 434bf2ed70
commit bbbc982be1
2 changed files with 4 additions and 3 deletions

View File

@ -4,10 +4,7 @@
width: 100%;
&-content {
width: 100%;
height: calc(100% - #{$--nav-height});
display: flex;
justify-self: space-between;
}
&-framework-center {

View File

@ -2,4 +2,8 @@
width: 100%;
display: flex;
justify-self: space-between;
&:has(.m-editor-resizer-draging) {
overflow: hidden;
}
}