blob: 591b04fb2f60514f09baf44cdc3fdfabbaa4d3fc (
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
|
@import '_variables';
@import '_mixins';
span {
opacity: .6;
&:focus-within {
opacity: 1;
}
}
my-global-icon {
height: 18px;
position: relative;
top: -2px;
}
input {
@include peertube-input-text(150px);
height: 22px; // maximum height for the account/video-channels links
padding-left: 10px;
background-color: transparent;
border: none;
&::placeholder {
font-size: 15px;
}
}
|