-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.scss
56 lines (49 loc) · 1009 Bytes
/
index.scss
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
52
53
54
55
56
.multiselect {
width: 100%;
.field {
background-color: #f3f4f4;
border: 1px solid #cdd3d5;
border-radius: 4px;
padding: 8px 8px 2px;
display: flex;
.icon {
width: 16px;
height: 16px;
margin-right: 8px;
}
.input {
flex: 1;
font-size: 12px;
line-height: 16px;
cursor: text;
&.placeholder {
color: #6b757b;
margin-bottom: 6px;
padding: 1px 4px;
padding-left: 0;
}
}
}
.list {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 8px;
padding: 12px 8px;
background: #ffffff;
box-shadow: 0px 4px 4px 4px rgba(0, 0, 0, 0.02),
0px 8px 16px 8px rgba(2, 3, 3, 0.05);
border-radius: 4px;
position: absolute;
z-index: 1;
.item {
align-items: center;
display: inline-flex;
label {
padding-left: 8px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
}
}
}