-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathApp.css
More file actions
108 lines (95 loc) · 1.99 KB
/
App.css
File metadata and controls
108 lines (95 loc) · 1.99 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#root {
width: 100%;
display: flex;
flex-direction: column;
padding: 0 15px 0px 15px;
gap: 10px;
}
.weight-selector {
width: 100%;
}
.error-container {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100%;
padding: 0 15px 25px 15px;
}
.error-container p {
color: var(--framer-color-text-tertiary);
}
.search-container {
display: flex;
flex-direction: column;
gap: 10px;
}
.grid-container {
height: 100%;
width: 100%;
border-radius: 8px 8px 0 0;
overflow: hidden;
overflow-y: scroll;
}
.search-input-container {
position: relative;
width: 100%;
}
.search-input {
height: 30px;
width: 100%;
font-size: 12px;
line-height: 24px;
font-weight: 500 !important;
font-family: "Inter", Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
padding-left: 33px;
}
.search-input::placeholder {
outline: none;
border: none;
color: var(--framer-color-text-tertiary);
font-weight: 500;
font-size: 12px;
font-family: "Inter", Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
}
.search-icon {
display: flex;
align-items: center;
justify-content: center;
position: absolute;
left: 11px;
top: 0;
bottom: 0;
color: var(--framer-color-text-tertiary);
}
.grid {
width: 100%;
display: grid;
border-radius: 8px;
overflow: hidden;
grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
grid-auto-rows: minmax(0px, 1fr);
padding-bottom: 15px;
gap: 10px;
}
.icon-parent {
display: flex;
justify-content: center;
align-items: center;
height: unset;
background: var(--framer-color-bg-tertiary);
aspect-ratio: 1 / 1;
border-radius: 8px;
cursor: pointer;
&:hover,
&:focus {
background: var(--framer-color-bg-tertiary);
}
}
::-webkit-scrollbar {
width: 0px;
height: 0px;
}
::-webkit-scrollbar-thumb {
background: transparent;
}