-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathindex.module.css
More file actions
56 lines (48 loc) · 930 Bytes
/
index.module.css
File metadata and controls
56 lines (48 loc) · 930 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
@reference "../../styles/index.css";
.root {
> [role='tabpanel'] > :first-child {
@apply rounded-t-none;
}
> div:nth-of-type(1) {
@apply flex
rounded-t
border-x
border-t
border-neutral-900
bg-neutral-950
px-2
pt-2
md:px-4;
.trigger {
@apply border-b
border-b-transparent
px-1
text-neutral-200;
&[data-state='active'] {
@apply border-b-green-400
text-green-400;
}
}
.link {
@apply hidden
items-center
gap-2
text-center
text-neutral-200
motion-safe:transition-colors
lg:flex;
& > .icon {
@apply size-4
text-neutral-300;
}
&:is(:link, :visited) {
&:hover {
@apply text-neutral-400;
& > .icon {
@apply text-neutral-600;
}
}
}
}
}
}