1
0
Fork 0
peertube/client/src/app/shared/shared-instance/instance-features-table.com...

47 lines
684 B
SCSS
Raw Normal View History

2021-05-27 16:25:00 +00:00
@use '_variables' as *;
@use '_mixins' as *;
2018-08-28 15:39:29 +00:00
table {
font-size: 14px;
color: pvar(--mainForegroundColor);
2022-06-08 14:14:24 +00:00
width: 100%;
2018-08-28 15:39:29 +00:00
2019-08-27 07:59:36 +00:00
.label,
.sub-label {
2020-08-17 07:42:51 +00:00
&.label {
2019-08-27 07:59:36 +00:00
font-weight: $font-semibold;
}
&.sub-label {
2021-06-07 15:38:31 +00:00
@include padding-left(30px);
font-weight: $font-regular;
2019-08-27 07:59:36 +00:00
}
.more-info {
font-style: italic;
font-weight: initial;
2021-04-28 14:41:07 +00:00
font-size: 14px;
2019-08-27 07:59:36 +00:00
}
2018-08-28 15:39:29 +00:00
}
2022-06-08 14:14:24 +00:00
th,
2019-08-27 07:59:36 +00:00
td {
2022-06-08 14:14:24 +00:00
padding: 0.75rem;
border-top: 1px solid #dee2e6;
2018-08-28 15:39:29 +00:00
}
caption {
caption-side: top;
font-weight: $font-semibold;
color: pvar(--mainForegroundColor);
}
2019-08-27 07:59:36 +00:00
.plugin,
.theme {
2021-11-09 15:07:40 +00:00
&:not(:last-child)::after {
content: '';
}
}
}