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