-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathindex.module.css
More file actions
188 lines (161 loc) · 2.56 KB
/
index.module.css
File metadata and controls
188 lines (161 loc) · 2.56 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
@reference "../../../../styles/index.css";
.searchResultsContainer {
@apply flex
grow
flex-col
overflow-y-auto;
}
.chatButtonWrapper {
@apply hidden
border-b
border-neutral-200
p-2
lg:block
dark:border-neutral-900;
svg {
@apply size-4;
}
}
.chatButton {
@apply flex
w-full
cursor-pointer
items-center
gap-2
rounded-lg
border
border-transparent
bg-transparent
p-3
text-sm
duration-300
hover:bg-neutral-300
focus-visible:border-green-600
focus-visible:outline-none
motion-safe:transition-colors
dark:hover:bg-neutral-900
dark:focus-visible:border-green-400;
}
.chatButtonWithSearch {
@apply bg-neutral-300
dark:bg-neutral-900;
}
.searchResultsWrapper {
@apply grow
overflow-y-auto
px-5
pt-3
text-neutral-900
lg:grow-0
dark:text-neutral-200;
&::-webkit-scrollbar {
@apply size-1.5;
}
&::-webkit-scrollbar-track {
@apply bg-transparent;
}
&::-webkit-scrollbar-thumb {
@apply rounded-md
bg-neutral-900;
}
}
.facetTabsWrapper {
@apply mb-2
overflow-x-auto;
&::-webkit-scrollbar {
@apply hidden;
}
}
.facetTabItem {
@apply flex
cursor-pointer
items-center
gap-2
rounded-3xl
border
border-neutral-200
px-3
py-1
text-sm
duration-300
focus:outline-none
focus-visible:bg-neutral-300
motion-safe:transition-colors
dark:border-neutral-900
dark:focus-visible:bg-neutral-900;
}
.facetTabItemSelected {
@apply border-2
border-green-600
dark:border-green-400;
}
.facetTabsList {
@apply flex
items-center
gap-2
overflow-x-auto;
&::-webkit-scrollbar {
@apply hidden;
}
}
.facetTabItemCount {
@apply text-neutral-700;
}
.searchResultsGroupWrapper {
@apply relative
items-start
overflow-y-auto;
}
.searchResultsGroup {
@apply mb-3
border-t
border-neutral-200
dark:border-neutral-900;
}
.searchResultsGroup:first-of-type {
@apply border-0;
}
.searchResultsGroupTitle {
@apply mt-4
mb-3
pl-2
text-sm
font-semibold
text-neutral-600
dark:text-neutral-600;
}
.skeletonWrapper {
@apply flex
flex-col
gap-5
py-6;
}
.skeletonItem {
@apply flex
items-center
gap-4;
}
.skeletonAnim {
@apply dark:animate-pulse-dark
animate-pulse
rounded-md;
}
.skeletonAvatar {
@apply h-6
w-5
shrink-0;
}
.skeletonText {
@apply flex
flex-1
flex-col
gap-2;
}
.skeletonLineShort {
@apply h-3
w-1/3;
}
.skeletonLineLong {
@apply h-3
w-2/3;
}