]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-instance/instance-features-table.component.scss
Increase global font size
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-instance / instance-features-table.component.scss
1 @use '_variables' as *;
2 @use '_mixins' as *;
3
4 table {
5 font-size: 14px;
6 color: pvar(--mainForegroundColor);
7 width: 100%;
8
9 .label,
10 .sub-label {
11 &.label {
12 font-weight: $font-semibold;
13 }
14
15 &.sub-label {
16 @include padding-left(30px);
17
18 font-weight: $font-regular;
19 }
20
21 .more-info {
22 font-style: italic;
23 font-weight: initial;
24 font-size: 14px;
25 }
26 }
27
28 th,
29 td {
30 padding: 0.75rem;
31 border-top: 1px solid #dee2e6;
32 }
33
34 caption {
35 caption-side: top;
36 font-weight: $font-semibold;
37 color: pvar(--mainForegroundColor);
38 }
39
40 .plugin,
41 .theme {
42 &:not(:last-child)::after {
43 content: '•';
44 }
45 }
46 }