Fix name convention issue
[sdc/sdc-workflow-designer.git] / sdc-workflow-designer-ui / src / main / frontend / resources / scss / components / _layout.scss
1 .workflow-app {
2     position: fixed;
3     top: 0;
4     left: 0;
5     right: 0;
6     bottom: 0;
7
8     * {
9         box-sizing: border-box;
10     }
11
12     .custom-textarea {
13         resize: none;
14     }
15
16     .version-wrapper {
17         display: grid;
18         grid-template-rows: 70px 1fr;
19         height: 100vh;
20     }
21
22     .disabled {
23         pointer-events: none;
24         opacity: 0.4;
25     }
26
27     .selectable {
28         user-select: text;
29     }
30
31     .separator {
32         border-left: 1px solid $silver;
33     }
34 }