aboutsummaryrefslogtreecommitdiffstats
path: root/workflow-designer-ui/src/main/frontend/resources/scss/components/_layout.scss
blob: 6862d554ec4ac0c3bf1794dce8806d71cdb6d419 (plain)
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
.workflow-app {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    * {
        box-sizing: border-box;
    }

    .custom-textarea {
        resize: none;
    }

    .version-wrapper {
        display: grid;
        grid-template-rows: 70px 1fr;
        height: 100vh;
    }

    .disabled {
        pointer-events: none;
        opacity: 0.4;
    }

    .selectable {
        user-select: text;
    }

    .separator {
        border-left: 1px solid $silver;
    }
}