aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-instance/instance-features-table.component.scss
blob: d8efd8cdf4aeeed5e874038ab473439fb6520ef8 (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
33
34
35
36
37
38
39
@use '_variables' as *;
@use '_mixins' as *;

table {
  font-size: 14px;
  color: pvar(--mainForegroundColor);

  .label,
  .sub-label {
    &.label {
      font-weight: $font-semibold;
    }

    &.sub-label {
      @include padding-left(30px);

      font-weight: $font-regular;
    }

    .more-info {
      font-style: italic;
      font-weight: initial;
      font-size: 14px;
    }
  }

  td {
    vertical-align: middle;
  }

  caption {
    caption-side: top;
    font-size: 15px;
    font-weight: $font-semibold;
    color: pvar(--mainForegroundColor);
  }
}