blob: 1732042919fc9131dc2aa7eb2cf6588147f89441 (
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
|
@use '_variables' as *;
@use '_mixins' as *;
.root {
display: flex;
}
my-global-icon {
@include margin-left(10px);
height: 28px;
width: 28px;
cursor: pointer;
&:hover {
color: pvar(--mainHoverColor);
}
&[iconName=search] {
color: pvar(--mainForegroundColor);
}
&[iconName=cross] {
color: pvar(--mainForegroundColor);
}
}
input {
@include peertube-input-text(200px);
}
|