blob: ee0f7a8d20a95469ec0d737a58abb6fb78d47e0f (
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
|
@use '_variables' as *;
@use '_mixins' as *;
.root {
display: flex;
}
.root > my-global-icon {
@include margin-left(10px);
height: 28px;
width: 28px;
cursor: pointer;
color: pvar(--mainColor);
&:hover {
color: pvar(--mainHoverColor);
}
}
input {
@include peertube-input-text(200px);
&:focus {
box-shadow: 0 0 5px 0 #a5a5a5;
}
}
.input-group > my-global-icon {
width: 20px;
}
|