The Node.js® Website
1.tabsRoot {
2 @apply max-w-full;
3
4 .tabsList {
5 @apply flex
6 gap-2
7 overflow-x-auto
8 font-open-sans;
9
10 .tabsTrigger {
11 @apply whitespace-nowrap
12 border-b-2
13 border-b-transparent
14 px-1
15 pb-[11px]
16 text-sm
17 font-semibold
18 text-neutral-800
19 dark:text-neutral-200;
20
21 &[data-state='active'] {
22 @apply border-b-green-600
23 text-green-600
24 dark:border-b-green-400
25 dark:text-green-400;
26 }
27 }
28
29 .addons {
30 @apply ml-auto
31 border-b-2
32 border-b-transparent
33 px-1
34 pb-[11px]
35 text-sm
36 font-semibold;
37 }
38 }
39}