summaryrefslogtreecommitdiffstats
path: root/asset/css/horizontal-key-value.less
blob: 24ff54c8e94496e6c3e3fd6e6bd77361d4075d50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.horizontal-key-value {
  display: flex;
  padding: .25em 0;
  align-items: baseline;

  .key {
    color: var(--default-text-color-light, @default-text-color-light);
    flex: 0 0 auto;
    white-space: nowrap;
    width: 12em;
  }

  .value {
    color: var(--default-text-color, @default-text-color);
    flex: 1 1 auto;
  }
}