-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathindex.module.css
More file actions
59 lines (53 loc) · 872 Bytes
/
index.module.css
File metadata and controls
59 lines (53 loc) · 872 Bytes
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
@reference "../../../../styles/index.css";
.suggestionsWrapper {
@apply flex
min-h-0
flex-1
flex-col
overflow-y-auto
pb-4
text-neutral-900
dark:text-neutral-200;
}
.suggestionsList {
@apply mt-1
space-y-1;
}
.suggestionsTitle {
@apply my-3
text-xs
font-semibold
text-neutral-800
uppercase
dark:text-neutral-500;
}
.suggestionItem {
@apply flex
cursor-pointer
items-center
gap-2
rounded-lg
border
border-transparent
py-2
text-sm
text-green-600
focus-visible:border-green-600
focus-visible:outline-none
dark:text-green-400
dark:focus-visible:border-green-400;
svg {
@apply size-5;
}
}
.noResultsWrapper {
@apply flex
h-full
items-center
justify-center
pt-10
pb-31
text-sm
text-neutral-800
dark:text-neutral-500;
}