blob: d08f1acd75fe335594823503d3a4227c89138b7b (
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
|
@import "../../styles/theme";
.searchBar input {
width: 12rem;
}
.searchResults {
margin-top: $fontSize1;
width: 12rem;
height: 10rem;
background-color: $background3;
overflow-x: hidden;
overflow-y: auto;
border: 1px solid $border2;
}
.searchResult {
color: $defFG;
}
.searchResults .dataItem {
width: 100%;
height: 50px;
display: flex;
align-items: center;
color: black;
}
|