The Node.js® Website
1.wrapper {
2 @apply flex
3 max-w-2xl
4 flex-col
5 items-start
6 gap-4
7 self-stretch
8 border-l-2
9 border-green-600
10 py-2
11 pl-5
12 text-lg
13 font-semibold
14 text-neutral-900
15 dark:border-green-400
16 dark:text-white;
17
18 & cite {
19 @apply text-base
20 font-regular
21 not-italic;
22
23 &::before {
24 @apply content-['—_'];
25 }
26 }
27}