-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathindex.module.css
More file actions
78 lines (70 loc) · 1.21 KB
/
index.module.css
File metadata and controls
78 lines (70 loc) · 1.21 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
@reference "../../../../styles/index.css";
.searchContainer {
@apply flex
grow
flex-col
overflow-hidden;
}
.searchInputWrapper {
@apply relative;
svg {
@apply absolute
top-1/2
left-3
size-4
-translate-y-1/2
text-neutral-500
dark:text-neutral-600;
}
}
.searchInput {
@apply w-full
border-b
border-neutral-200
bg-transparent
py-4
pr-4
pl-9
text-sm
text-neutral-900
placeholder:text-neutral-500
focus:outline-none
dark:border-neutral-900
dark:text-neutral-200
dark:placeholder:text-neutral-600;
}
.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;
}