-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathindex.module.css
More file actions
54 lines (47 loc) · 969 Bytes
/
index.module.css
File metadata and controls
54 lines (47 loc) · 969 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
@reference "../../styles/index.css";
.tabsRoot {
@apply grid
max-w-full;
.tabsList {
@apply font-open-sans
scrollbar-thin
flex
gap-2
overflow-x-auto;
.tabsTrigger {
@apply whitespace-nowrap
border-b-2
border-b-transparent
px-1
pb-[11px]
text-sm
font-semibold
text-neutral-800
dark:text-neutral-200;
.tabSecondaryLabel {
@apply pl-1
text-neutral-500
dark:text-neutral-800;
}
&[data-state='active'] {
@apply border-b-green-600
text-green-600
dark:border-b-green-400
dark:text-green-400;
.tabSecondaryLabel {
@apply text-green-800
dark:text-green-600;
}
}
}
.addons {
@apply ml-auto
border-b-2
border-b-transparent
px-1
pb-[11px]
text-sm
font-semibold;
}
}
}