The Node.js® Website
1.wrapper {
2 @apply flex
3 flex-col
4 gap-8
5 overflow-auto
6 border-r
7 border-neutral-200
8 bg-white
9 px-4
10 py-6
11 dark:border-neutral-900
12 dark:bg-neutral-950
13 md:max-w-xs
14 lg:px-6
15 xs:w-full
16 xs:border-r-0;
17
18 > section {
19 @apply flex
20 xs:hidden;
21 }
22
23 > span {
24 @apply hidden
25 w-full
26 xs:flex;
27 }
28}