aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-main/misc/simple-search-input.component.scss
blob: 5ae48f81bd41c18584e182e207b5062c2dbef34e (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';

.root {
  display: flex;
}

my-global-icon {
  height: 28px;
  width: 28px;
  margin-left: 10px;
  cursor: pointer;

  &:hover {
    color: pvar(--mainHoverColor);
  }

  &[iconName=search] {
    color: pvar(--mainForegroundColor);
  }

  &[iconName=cross] {
    color: pvar(--mainForegroundColor);
  }
}

input {
  @include peertube-input-text(200px);
}