]>
Commit | Line | Data |
---|---|---|
1 | @use '_variables' as *; | |
2 | @use '_mixins' as *; | |
3 | ||
4 | .root { | |
5 | display: flex; | |
6 | } | |
7 | ||
8 | .root > my-global-icon { | |
9 | @include margin-left(10px); | |
10 | ||
11 | height: 28px; | |
12 | width: 28px; | |
13 | cursor: pointer; | |
14 | color: pvar(--mainColor); | |
15 | ||
16 | &:hover { | |
17 | color: pvar(--mainHoverColor); | |
18 | } | |
19 | } | |
20 | ||
21 | input { | |
22 | @include peertube-input-text(200px); | |
23 | ||
24 | &:focus { | |
25 | box-shadow: 0 0 5px 0 #a5a5a5; | |
26 | } | |
27 | } | |
28 | ||
29 | .input-group > my-global-icon { | |
30 | width: 20px; | |
31 | } |