summaryrefslogtreecommitdiffstats
path: root/webapp/src/app/@theme/components/search-input/search-input.component.scss
blob: 5ef07efa593805ede3814f336eb80b801945d83e (plain)
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
32
33
:host {
  display: flex;
  align-items: center;

  i.control-icon {
    &::before {
      font-size: 2.3rem;
    }

    &:hover {
      cursor: pointer;
    }
  }

  input {
    border: none;
    outline: none;
    margin-left: 1rem;
    width: 15rem;
    transition: width 0.2s ease;

    &.hidden {
      width: 0;
      margin: 0;
    }
  }

  /deep/ search-input {
    input {
      background: transparent;
    }
  }
}