blob: 3120509b3b46a9d78b752ac01de59c691090a436 (
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
|
@import '_variables';
@import '_mixins';
.root {
display: flex;
.form-group-checkbox {
display: flex;
align-items: center;
.label-text {
font-weight: $font-regular;
margin: 0;
}
input {
@include peertube-checkbox(1px);
}
}
label {
margin-bottom: 0;
}
my-help {
position: relative;
top: 2px;
}
small {
font-size: 90%;
}
.wrapper:empty {
display: none;
}
}
|