The Node.js® Website
1.crossLink {
2 @apply flex
3 flex-col
4 items-start
5 gap-2
6 truncate
7 rounded
8 border
9 border-solid
10 border-neutral-300
11 bg-white
12 p-3
13 no-underline
14 dark:border-neutral-900
15 dark:bg-neutral-950;
16
17 .header {
18 @apply flex
19 items-center
20 gap-2
21 self-stretch
22 text-xs
23 text-neutral-800
24 dark:text-neutral-100;
25
26 &.reverse {
27 @apply flex-row-reverse
28 justify-start;
29 }
30
31 .icon {
32 @apply size-4
33 text-neutral-600
34 dark:text-neutral-400;
35 }
36 }
37
38 .content {
39 @apply self-stretch
40 truncate
41 text-sm
42 text-neutral-900
43 dark:text-white;
44
45 &.reverse {
46 @apply text-right;
47 }
48 }
49}