mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-05 17:57:13 +00:00
31 lines
582 B
CSS
31 lines
582 B
CSS
body {
|
|
font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma, Arial, PingFang SC-Light, Microsoft YaHei;
|
|
font-size: 12px;
|
|
}
|
|
body * {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body, #app {
|
|
position: fixed;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
top: 0;
|
|
box-sizing: border-box;
|
|
padding: 0;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-user-select: none;
|
|
-webkit-user-drag: none;
|
|
-webkit-text-size-adjust: none;
|
|
-webkit-touch-callout: none;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
#engine {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|