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
38
39
40
41
42
43
44
45
46
| .flow {
| width: 100%;
| height: 100%;
| }
|
| .content {
| width: 100%;
| height: 100%;
| display: flex;
| }
|
| #stencil {
| width: 260px;
| height: 100%;
| position: relative;
| border-right: 1px solid rgba(0, 0, 0, 0.08);
| box-sizing: border-box;
| }
|
| .panel {
| width: calc(100% - 460px);
| height: 100%;
| }
|
| .panel .toolbar {
| width: 100%;
| height: 38px;
| display: flex;
| align-items: center;
| background-color: #f7f9fb;
| border-bottom: 1px solid rgba(0, 0, 0, 0.08);
| }
|
| .panel #container {
| width: 100%;
| height: calc(100% - 38px)!important;
| }
|
|
| .config {
| width: 200px;
| height: 100%;
| padding: 0 10px;
| border-left: 1px solid rgba(0, 0, 0, 0.08);
| box-sizing: border-box;
| }
|
|