-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathindex.module.css
More file actions
63 lines (55 loc) · 931 Bytes
/
index.module.css
File metadata and controls
63 lines (55 loc) · 931 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
60
61
62
63
@reference "../../../../styles/index.css";
.chatInteractionsContainer {
@apply relative
mb-6
flex
h-full
flex-1
flex-col
items-start
overflow-auto
px-1;
&::-webkit-scrollbar {
@apply size-1.5;
}
&::-webkit-scrollbar-track {
@apply rounded-md
bg-transparent;
}
&::-webkit-scrollbar-thumb {
@apply rounded-md
bg-neutral-900;
}
}
.chatInteractionsWrapper {
@apply flex
w-full
flex-wrap
gap-6;
> div {
@apply w-full;
}
}
.scrollDownButton {
@apply absolute
bottom-28
left-1/2
inline-flex
-translate-x-1/2
items-center
justify-center
rounded-xl
bg-neutral-200
p-2
text-neutral-900
duration-300
focus:bg-neutral-300
focus:outline-none
motion-safe:transition-colors
dark:bg-neutral-900
dark:text-neutral-200
focus:dark:bg-neutral-800;
svg {
@apply size-4;
}
}