mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-02 17:28:14 +00:00
32 lines
582 B
SCSS
32 lines
582 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;
|
|
}
|
|
}
|
|
.next-loading {
|
|
.next-loading-wrap {
|
|
height: 100%;
|
|
}
|
|
}
|
|
.lowcode-editor {
|
|
.lowcode-main-content {
|
|
position: absolute;
|
|
top: 48px;
|
|
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;
|
|
}
|
|
}
|