forked from nodejs/nodejs.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.module.css
More file actions
50 lines (43 loc) · 739 Bytes
/
index.module.css
File metadata and controls
50 lines (43 loc) · 739 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
@reference "../../../../styles/index.css";
.chatUserPrompt {
@apply py-3;
p {
@apply max-w-2xl
rounded-xl
text-neutral-900
dark:text-neutral-200;
}
}
.chatAssistantMessageWrapper {
@apply my-2
rounded-xl
bg-neutral-100
px-4
py-1
text-neutral-900
empty:hidden
dark:bg-neutral-950
dark:text-neutral-200;
}
.typingIndicator {
@apply flex
items-center
gap-1
rounded-xl
bg-neutral-200
p-4
dark:bg-neutral-950;
}
.typingDot {
@apply animate-dot-move
size-1
rounded-full
bg-neutral-500
dark:bg-neutral-400;
&:nth-child(2) {
@apply animate-dot-move-delay-200;
}
&:nth-child(3) {
@apply animate-dot-move-delay-400;
}
}