aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/css/layout.less
blob: 6e4abd24fcdb0849e4423ab82f330afb728af166 (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
html, body, #container {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

#container {
    display: flex;
    flex-direction: column;

    > header, > footer, > .eventlog {
        flex: 0 0 auto;
    }
}

.main-view {
    flex: 1 1 auto;
   
    display: flex;
    flex-direction: row;

    &.vertical {
        flex-direction: column;
    }

    .flow-detail, .flow-table {
        flex: 1 1 auto;
        flex-basis: 50%;
    }

}