-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathindex.module.css
More file actions
91 lines (80 loc) · 1.32 KB
/
index.module.css
File metadata and controls
91 lines (80 loc) · 1.32 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
@reference "../../styles/index.css";
.wrapper {
@apply flex
w-full
flex-col
items-start
gap-8
border-neutral-200
px-4
py-6
wrap-anywhere
lg:sticky
lg:top-0
lg:max-h-screen
lg:px-6
dark:border-neutral-900;
dl {
@apply flex
w-full
flex-col
gap-1.5
pb-12
[scrollbar-width:none]
lg:max-h-[calc(100vh-var(--header-height))]
lg:overflow-y-auto
[&::-webkit-scrollbar]:hidden;
}
dt {
@apply mb-2
text-sm
font-medium
text-neutral-800
dark:text-neutral-200;
}
dd {
@apply mb-8
flex
items-center
gap-2
text-sm
text-neutral-900
dark:text-white;
a {
@apply max-ml:inline-block
max-ml:py-1
font-semibold
text-neutral-900
underline
dark:text-white;
&:hover {
@apply text-neutral-700
dark:text-neutral-500;
}
}
ol {
@apply flex
w-full
list-none
flex-col
gap-1.5
p-0;
}
svg {
@apply size-4
text-neutral-600
dark:text-neutral-400;
}
&:last-child {
@apply mb-0;
}
}
[data-on-dark] {
@apply hidden
dark:block;
}
[data-on-light] {
@apply block
dark:hidden;
}
}