-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathindex.module.css
More file actions
97 lines (88 loc) · 1.57 KB
/
index.module.css
File metadata and controls
97 lines (88 loc) · 1.57 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
@reference "../../../../styles/index.css";
.textareaContainer {
@apply px-1;
}
.textareaWrapper {
@apply flex
items-center
rounded-2xl
border
border-neutral-300
bg-neutral-100
py-2
pr-1
pl-3
dark:border-neutral-900
dark:bg-neutral-950;
}
.textareaField {
@apply flex-1
border-0
bg-transparent
text-neutral-900
focus:outline-none
dark:text-neutral-200;
}
.textareaButton {
@apply cursor-pointer
rounded-xl
bg-green-600
p-2
text-white
focus:bg-green-600/75
focus:outline-none
disabled:cursor-not-allowed
disabled:bg-neutral-200/60
disabled:text-neutral-800
motion-safe:transition-colors
dark:bg-green-400
dark:text-neutral-400
focus:dark:bg-green-400/75
disabled:dark:bg-neutral-900/60;
svg {
@apply size-4;
}
}
.textareaFooter {
@apply pt-1
text-center
text-xs
text-neutral-800
sm:text-sm
dark:text-neutral-500;
}
.suggestionsWrapper {
@apply mb-4
flex
items-center
gap-2
overflow-x-auto
px-1
text-sm
lg:justify-center;
&::-webkit-scrollbar {
@apply hidden;
}
}
.suggestionsItem {
@apply flex
size-max
cursor-pointer
rounded-full
border
border-neutral-300
bg-neutral-200
px-3
py-1
whitespace-nowrap
text-neutral-900
hover:bg-neutral-300
focus:bg-neutral-300
focus:outline-none
motion-safe:transition-colors
dark:border-neutral-900
dark:bg-neutral-950
dark:text-neutral-200
dark:hover:bg-neutral-900
dark:focus:bg-neutral-900;
}