-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
48 lines (43 loc) · 907 Bytes
/
style.css
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
.icon_picker .picker_dialog {
box-shadow: 0px 0px 10px 0px #cecece;
background-color: white;
z-index: 10000 !important;
width: 295px;
height: 250px;
margin: 10px 0px;
border-radius: 4px;
padding: 10px;
position: absolute;
padding-bottom: 40px;
}
.icon_picker .icon_option {
border: 1px solid #cecece;
border-radius: 2px;
color: rgb(36, 36, 36);
background-color: white;
height: 30px;
width: 30px;
margin: 5px;
transition: all 0.25s ease;
}
.icon_picker .icon_option:hover {
border: 1px solid #ececec;
background-color: #f4f4f4;
transition: all 0.25s ease;
}
.icon_picker .icon_container {
display: flex;
flex-wrap: wrap;
overflow-y: scroll;
height: inherit;
}
.icon_picker .icon_option {
display: flex;
justify-content: center;
align-items: center;
}
.icon_picker .search_field {
width: 100%;
padding: 3px 5px;
border: 1px solid #cecece;
}