blob: fa6b18b37cb9d582d4923c3961180cbdebf2769e (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
@import '_variables';
@import '_mixins';
.video-channel-title {
@include settings-big-title;
}
.form-sub-title {
margin-bottom: 20px;
}
my-actor-avatar-info {
display: block;
margin-bottom: 20px;
}
.input-group {
@include peertube-input-group(fit-content);
}
.input-group-append {
height: 30px;
}
input {
&[type=text] {
@include peertube-input-text(340px);
display: block;
&#name {
width: auto;
flex-grow: 1;
}
}
&[type=submit] {
@include peertube-button;
@include orange-button;
margin-left: auto;
}
}
label {
font-weight: $font-regular;
font-size: 100%;
}
textarea {
@include peertube-textarea(500px, 150px);
display: block;
}
my-markdown-textarea ::ng-deep {
.root {
@media screen and (max-width: 1400px) {
flex-direction: column !important;
}
}
}
.peertube-select-container {
@include peertube-select-container(340px);
}
|