aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/searchInput.scss
blob: 91453c60042c77a0905f3c1bc1d4ca566a6b3888 (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
30
31
32
33
34
35
36
@import './config.scss';
@import './mixins.scss';

.theme__dark .search-input {
  @extend %headline__dark;
  background: $dark-theme-gray-dark;
  border: 1px solid $dark-theme-gray-light;
  border-radius: $theme-border-radius;
  color: $dark-theme-gray-lightest;

  input { color: $dark-theme-gray-lightest; }
}

.search-input {
  @extend %headline;
  align-items: center;
  background: $theme-gray-lightest;
  border-radius: 30px;
  color: $theme-gray-light;
  display: flex;
  height: auto;
  padding: 5px 10px;
  width: 100%;

  label {
    width: 100%;
  }

  input {
    background: none;
    border: 0;
    color: $theme-gray-light;
    flex: 1;
    padding-left: 10px;
  }
}