-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathindex.module.css
More file actions
64 lines (54 loc) · 835 Bytes
/
index.module.css
File metadata and controls
64 lines (54 loc) · 835 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
64
@reference "../../styles/index.css";
.details {
@apply my-2
block
rounded-md
bg-neutral-200
xl:hidden
dark:bg-neutral-900;
&[open] {
.icon {
@apply rotate-90;
}
}
.summary {
@apply flex
list-none
items-center
gap-1
px-3.5
py-2.5;
&::-webkit-details-marker {
@apply hidden;
}
.icon {
@apply size-5;
}
}
.list {
@apply space-y-1
px-4
pb-2
wrap-anywhere;
}
.link {
@apply inline-block
text-sm
font-semibold
text-neutral-900
underline
hover:text-neutral-700
dark:text-white
dark:hover:text-neutral-500;
}
.codeLink {
@apply font-ibm-plex-mono
font-medium;
}
.depthThree {
@apply pl-2;
}
.depthFour {
@apply pl-4;
}
}