mirror of https://github.com/allinssl/allinssl
24 lines
381 B
CSS
24 lines
381 B
CSS
.workflowContainer {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.workflowEditor {
|
|
flex: 2;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.workflowConfig {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-width: 280px;
|
|
max-width: 350px;
|
|
border-left: 1px solid #e8e8e8;
|
|
background-color: #fff;
|
|
overflow: hidden;
|
|
} |