]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-instance/instance-features-table.component.scss
Move to sass @use
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-instance / instance-features-table.component.scss
1 @use '_variables';
2 @use '_mixins';
3
4 table {
5 font-size: 14px;
6 color: pvar(--mainForegroundColor);
7
8 .label,
9 .sub-label {
10 &.label {
11 font-weight: $font-semibold;
12 }
13
14 &.sub-label {
15 @include padding-left(30px);
16
17 font-weight: $font-regular;
18 }
19
20 .more-info {
21 font-style: italic;
22 font-weight: initial;
23 font-size: 14px;
24 }
25 }
26
27 td {
28 vertical-align: middle;
29 }
30
31 caption {
32 caption-side: top;
33 font-size: 15px;
34 font-weight: $font-semibold;
35 color: pvar(--mainForegroundColor);
36 }
37 }
38
39