forked from KNXCloud/lowcode-engine-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditor.less
More file actions
37 lines (33 loc) · 657 Bytes
/
editor.less
File metadata and controls
37 lines (33 loc) · 657 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
html {
min-width: 1024px;
}
body {
font-size: 12px;
font-family: PingFangSC-Regular, Roboto, 'Helvetica Neue', Helvetica, Tahoma, Arial,
'PingFang SC-Light', 'Microsoft YaHei';
* {
box-sizing: border-box;
}
}
#lce-container {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
box-sizing: border-box;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
text-rendering: optimizelegibility;
-webkit-user-drag: none;
-webkit-touch-callout: none;
-webkit-font-smoothing: antialiased;
.lc-code-control {
position: relative;
height: calc(100% - 24px);
overflow: visible;
}
}