The Node.js® Website
1.pagination {
2 @apply grid
3 items-center
4 justify-between
5 gap-y-5
6 [grid-template-areas:'pages_pages_pages''prev_._next']
7 md:gap-y-0
8 md:[grid-template-areas:'prev_pages_next'];
9}
10
11.previousButton,
12.nextButton {
13 @apply text-sm;
14}
15
16.previousButton {
17 @apply [grid-area:prev];
18}
19
20.nextButton {
21 @apply [grid-area:next];
22}
23
24.arrowIcon {
25 @apply h-5
26 shrink-0
27 text-neutral-600
28 dark:text-neutral-400;
29}
30
31.list {
32 @apply flex
33 list-none
34 justify-center
35 gap-1
36 [grid-area:pages];
37}