The Node.js® Website
1a.item {
2 @apply relative
3 z-20
4 flex
5 w-full
6 items-center
7 gap-1
8 overflow-hidden
9 text-sm
10 font-regular
11 text-neutral-800
12 dark:text-neutral-200;
13
14 &:hover {
15 @apply text-neutral-900
16 dark:text-white;
17 }
18
19 svg {
20 @apply flex-shrink-0
21 fill-neutral-200
22 stroke-white
23 stroke-[4]
24 dark:fill-neutral-800
25 dark:stroke-neutral-950;
26 }
27
28 &.active {
29 @apply text-neutral-900
30 dark:text-white;
31
32 svg {
33 @apply fill-green-500;
34 }
35 }
36}