-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathindex.module.css
More file actions
47 lines (44 loc) · 983 Bytes
/
index.module.css
File metadata and controls
47 lines (44 loc) · 983 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
@reference "../../../styles/index.css";
.group {
@apply flex
flex-col
gap-4
text-sm
font-medium
text-neutral-800
dark:text-neutral-200;
.items {
@apply relative
-left-1
flex
flex-col
gap-2
after:absolute
after:left-[0.45rem]
after:top-0
after:z-10
after:h-full
after:w-px
after:bg-neutral-200
after:content-['']
dark:after:bg-neutral-800;
a {
@apply first:before:absolute
first:before:bottom-[calc(50%+0.25rem)]
first:before:left-0
first:before:h-20
first:before:w-4
first:before:bg-white
first:before:content-['']
last:after:absolute
last:after:left-0
last:after:top-[calc(50%+0.25rem)]
last:after:h-20
last:after:w-4
last:after:bg-white
last:after:content-['']
first:dark:before:bg-neutral-950
last:dark:after:bg-neutral-950;
}
}
}