-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathindex.module.css
More file actions
53 lines (48 loc) · 851 Bytes
/
index.module.css
File metadata and controls
53 lines (48 loc) · 851 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
@reference "../../../../styles/index.css";
.chatSources {
@apply mb-4
flex
flex-nowrap
items-center
gap-3
overflow-x-scroll
scroll-smooth
[-ms-overflow-style:none]
[scrollbar-width:none];
&::-webkit-scrollbar {
@apply hidden;
}
}
.chatSource {
@apply flex
max-w-full
items-center
gap-2
text-base;
}
.chatSourceLink {
@apply w-3xs
rounded-xl
bg-white
px-4
py-2
text-neutral-900
hover:bg-neutral-200
focus:bg-neutral-200
focus:outline-none
motion-safe:transition-colors
lg:bg-neutral-100
dark:bg-neutral-950
dark:text-neutral-200
hover:dark:bg-neutral-900
focus:dark:bg-neutral-900;
}
.chatSourceTitle {
@apply max-w-full
truncate
overflow-hidden
text-sm
font-semibold
text-ellipsis
whitespace-nowrap;
}