blob: 0296ae8e9082f39bde640b576934e2fd176f5727 (
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
|
@import '_variables';
@import '_mixins';
.about-instance-title {
display: flex;
justify-content: space-between;
& > div {
font-size: 20px;
font-weight: bold;
margin-bottom: 15px;
}
& > .contact-admin {
@include peertube-button;
@include orange-button;
height: fit-content;
}
}
.section-title {
font-weight: $font-semibold;
font-size: 20px;
margin-bottom: 5px;
}
.short-description, .description, .terms, .signup {
margin-bottom: 30px;
}
.short-description .dedicated-to-nsfw {
margin-top: 20px;
font-weight: $font-semibold;
}
|