mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-01 08:48:24 +00:00
35 lines
612 B
SCSS
35 lines
612 B
SCSS
body {
|
|
font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma,
|
|
Arial, PingFang SC-Light, Microsoft YaHei;
|
|
font-size: 12px;
|
|
padding: 0;
|
|
margin: 0;
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
color: $color-text1-3;
|
|
}
|
|
|
|
.next-loading {
|
|
.next-loading-wrap {
|
|
height: 100%;
|
|
}
|
|
}
|
|
.lowcode-editor {
|
|
.lowcode-main-content {
|
|
position: absolute;
|
|
top: 50px;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
display: flex;
|
|
background-color: rgba(31, 56, 88, 0.06);
|
|
}
|
|
.lowcode-center-area {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: auto;
|
|
}
|
|
}
|