blob: 5a63500393e805047d90fed92ea3d30bd93bf507 (
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
|
.searchBar {
background-color: var(--heliotrope-gray);
border-radius: 8px;
padding: 12px;
}
.searchBar .input {
background-color: transparent;
border: 0;
color: var(--bg);
margin-left: 12px;
width: calc(100% - 48px - 12px);
padding: 14px 0;
vertical-align: top;
font-family: "Inter", sans-serif;
font-size: 16px;
}
.searchBar .input::placeholder {
font-style: italic;
opacity: .75;
color: var(--bg);
}
.searchBar .button {
margin: 0;
display: inline-block !important;
line-height: 0;
min-width: unset;
background-color: var(--bg);
color: var(--heliotrope-gray) !important;
}
|