-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathindex.module.css
More file actions
72 lines (63 loc) · 1.26 KB
/
index.module.css
File metadata and controls
72 lines (63 loc) · 1.26 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
@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 border-b-2
border-b-transparent
px-1
pt-0
pb-2
text-sm
font-semibold
whitespace-nowrap
text-neutral-800
dark:text-neutral-200;
.tabExtension {
@apply ml-1
rounded-xs
border
border-neutral-200
px-1
py-0
text-xs
font-normal
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;
.tabExtension {
@apply border-green-400
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;
}
}
}