fix(editor): 修正css sass变量

遇到浏览器报错
This commit is contained in:
i33 2022-07-25 15:45:11 +08:00 committed by jia000
parent 1f6c59ee41
commit 940b08b2c5
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@
justify-content: center;
align-items: center;
flex-direction: column;
height: calc(100% - $--page-bar-height);
height: calc(100% - #{$--page-bar-height});
}
&-content {

View File

@ -1,7 +1,7 @@
.m-editor-stage {
position: relative;
width: 100%;
height: calc(100% - $--page-bar-height);
height: calc(100% - #{$--page-bar-height});
overflow: hidden;
display: flex;
justify-content: center;