aboutsummaryrefslogtreecommitdiffstats
path: root/components/filter-bar/_filter-bar.scss
blob: f48a3df5d73eaa3b3bf05e4323ca38e19c10fdb8 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
$inputHeight: 38px;

.sdc-filter-bar {
  .sdc-input {
    margin: 0;
    .sdc-input__input{
      padding-right: 40px;
    }
  }

  .filter-button{
    position: relative;
    float: right;
    bottom: $inputHeight;
    height: $inputHeight;
    right: 11px;
    svg{
      position: relative;
      top: 50%;
      transform: translateY(-50%);
    }
  }

  .magnify-button {
    svg{
      height: 20px;
      width: 20px;
      path{
        fill: $dark-gray;
      }
    }
  }

  .clear-search-x {
    cursor: pointer;
    svg{
      height: 14px;
      width: 14px;
      path{
        fill: $dark-gray;
      }
      &:hover{
        path{
          fill: $blue;
        }
      }
    }
  }
}