]>
Commit | Line | Data |
---|---|---|
8cbc40b2 C |
1 | @use '_variables' as *; |
2 | @use '_mixins' as *; | |
37024082 | 3 | |
67264e06 C |
4 | .root { |
5 | display: flex; | |
37024082 RK |
6 | } |
7 | ||
8 | my-global-icon { | |
27bc9586 C |
9 | @include margin-left(10px); |
10 | ||
900f7820 C |
11 | height: 28px; |
12 | width: 28px; | |
67264e06 | 13 | cursor: pointer; |
37024082 | 14 | |
67264e06 C |
15 | &:hover { |
16 | color: pvar(--mainHoverColor); | |
17 | } | |
37024082 | 18 | |
67264e06 | 19 | &[iconName=search] { |
733dbc53 | 20 | color: pvar(--mainForegroundColor); |
67264e06 | 21 | } |
37024082 | 22 | |
67264e06 C |
23 | &[iconName=cross] { |
24 | color: pvar(--mainForegroundColor); | |
37024082 RK |
25 | } |
26 | } | |
67264e06 C |
27 | |
28 | input { | |
29 | @include peertube-input-text(200px); | |
30 | } |