aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/panels/RulesPane.scss
blob: 992445af068ee1cfb4ec6583d5bc098f1f45e02f (plain) (blame)
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
.rule-pane {
  display: flex;
  flex-direction: column;

  .rules-list {
    overflow: hidden;
    flex: 2 1;

    .section-content {
      height: 100%;
    }

    .section-table {
      height: calc(100% - 30px);
    }
  }

  .rule-edit {
    display: flex;
    flex: 3 0;
    flex-direction: column;

    .section-content {
      flex: 1;
    }

    .section-table {
      max-height: 150px;
    }
  }
}