mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-20 09:22:54 +00:00
34 lines
590 B
SCSS
34 lines
590 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: #d8d8d8;
|
|
}
|
|
.lowcode-center-area {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 10px;
|
|
overflow: auto;
|
|
}
|
|
}
|