@fpkit/acss 3.0.0 → 3.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/libs/chunk-5RAWNUVD.js +8 -0
  2. package/libs/chunk-5RAWNUVD.js.map +1 -0
  3. package/libs/{chunk-D2PSO7MU.js → chunk-CWRNJA4P.js} +2 -2
  4. package/libs/{chunk-C622WBGW.cjs → chunk-DYFAUAB7.cjs} +3 -3
  5. package/libs/chunk-NWJDAHP6.cjs +17 -0
  6. package/libs/chunk-NWJDAHP6.cjs.map +1 -0
  7. package/libs/components/breadcrumbs/breadcrumb.cjs +5 -5
  8. package/libs/components/breadcrumbs/breadcrumb.js +2 -2
  9. package/libs/components/flexbox/flex.css +1 -0
  10. package/libs/components/flexbox/flex.css.map +1 -0
  11. package/libs/components/flexbox/flex.min.css +3 -0
  12. package/libs/components/link/link.cjs +5 -5
  13. package/libs/components/link/link.css +1 -1
  14. package/libs/components/link/link.css.map +1 -1
  15. package/libs/components/link/link.js +1 -1
  16. package/libs/components/link/link.min.css +2 -2
  17. package/libs/hooks.cjs +3 -3
  18. package/libs/hooks.js +2 -2
  19. package/libs/index.cjs +29 -28
  20. package/libs/index.cjs.map +1 -1
  21. package/libs/index.css +1 -1
  22. package/libs/index.css.map +1 -1
  23. package/libs/index.d.cts +243 -52
  24. package/libs/index.d.ts +243 -52
  25. package/libs/index.js +14 -14
  26. package/libs/index.js.map +1 -1
  27. package/package.json +2 -2
  28. package/src/components/flexbox/README.mdx +996 -0
  29. package/src/components/flexbox/flex.scss +847 -0
  30. package/src/components/flexbox/flex.stories.tsx +1233 -0
  31. package/src/components/flexbox/flex.test.tsx +689 -0
  32. package/src/components/flexbox/flex.tsx +484 -0
  33. package/src/components/flexbox/flex.types.ts +224 -0
  34. package/src/components/link/link.tsx +1 -1
  35. package/src/index.scss +1 -0
  36. package/src/index.ts +17 -0
  37. package/src/styles/flexbox/flex.css +736 -0
  38. package/src/styles/flexbox/flex.css.map +1 -0
  39. package/src/styles/index.css +735 -1
  40. package/src/styles/index.css.map +1 -1
  41. package/src/styles/link/link.css +1 -1
  42. package/libs/chunk-KG4GHIQJ.js +0 -8
  43. package/libs/chunk-KG4GHIQJ.js.map +0 -1
  44. package/libs/chunk-ZOBAJTNE.cjs +0 -17
  45. package/libs/chunk-ZOBAJTNE.cjs.map +0 -1
  46. package/libs/components/alert/alert.min.min.css +0 -2
  47. package/libs/components/badge/badge.min.min.css +0 -2
  48. package/libs/components/breadcrumbs/breadcrumb.min.min.css +0 -2
  49. package/libs/components/buttons/button.min.min.css +0 -2
  50. package/libs/components/cards/card-style.min.min.css +0 -2
  51. package/libs/components/cards/card.min.min.css +0 -2
  52. package/libs/components/details/details.min.min.css +0 -2
  53. package/libs/components/dialog/dialog.min.min.css +0 -2
  54. package/libs/components/form/form.min.min.css +0 -2
  55. package/libs/components/icons/icon.min.min.css +0 -2
  56. package/libs/components/images/img.min.min.css +0 -2
  57. package/libs/components/layout/landmarks.min.min.css +0 -2
  58. package/libs/components/link/link.min.min.css +0 -2
  59. package/libs/components/list/list.min.min.css +0 -2
  60. package/libs/components/nav/nav.min.min.css +0 -2
  61. package/libs/components/progress/progress.min.min.css +0 -2
  62. package/libs/components/styles/index.min.min.css +0 -2
  63. package/libs/components/tag/tag.min.min.css +0 -2
  64. package/libs/components/text-to-speech/text-to-speech.min.min.css +0 -2
  65. /package/libs/{chunk-D2PSO7MU.js.map → chunk-CWRNJA4P.js.map} +0 -0
  66. /package/libs/{chunk-C622WBGW.cjs.map → chunk-DYFAUAB7.cjs.map} +0 -0
@@ -0,0 +1,847 @@
1
+ /* ============================================================================
2
+ FLEXBOX UTILITIES - Responsive Layout Control
3
+ ============================================================================
4
+
5
+ Comprehensive flexbox utility classes with responsive modifiers.
6
+ Uses CSS custom properties for flexibility and modern range media queries.
7
+
8
+ Usage:
9
+ 1. Direct utility classes: <div className="flex gap-md justify-between">
10
+ 2. React Flex component: <Flex gap="md" justify="between">
11
+ - Flex component automatically generates these utility classes from props
12
+ - Supports responsive props: <Flex md={{ direction: "row" }}>
13
+ - Sub-components: Flex.Item, Flex.Spacer
14
+
15
+ Breakpoints:
16
+ - sm: 30rem (480px)
17
+ - md: 48rem (768px)
18
+ - lg: 62rem (992px)
19
+ - xl: 80rem (1280px)
20
+
21
+ All spacing uses rem units (base: 1rem = 16px)
22
+ ============================================================================ */
23
+
24
+ /* CSS Custom Properties
25
+ ========================================================================== */
26
+ :root {
27
+ /* Gap spacing - fluid typography with clamp() */
28
+ --flex-gap-xs: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem); /* 4-8px */
29
+ --flex-gap-sm: clamp(0.5rem, 0.45rem + 0.35vw, 0.75rem); /* 8-12px */
30
+ --flex-gap-md: clamp(0.75rem, 0.65rem + 0.45vw, 1.125rem); /* 12-18px */
31
+ --flex-gap-lg: clamp(1rem, 0.85rem + 0.6vw, 1.5rem); /* 16-24px */
32
+ --flex-gap-xl: clamp(1.5rem, 1.25rem + 0.75vw, 2rem); /* 24-32px */
33
+
34
+ /* Default gap for flex containers */
35
+ --flex-gap: var(--flex-gap-sm);
36
+ }
37
+
38
+ /* Base Flex Containers
39
+ ========================================================================== */
40
+
41
+ /* Standard flex container */
42
+ .flex {
43
+ display: flex;
44
+ gap: var(--flex-gap);
45
+ }
46
+
47
+ /* Inline flex container */
48
+ .flex-inline {
49
+ display: inline-flex;
50
+ gap: var(--flex-gap);
51
+ }
52
+
53
+ /* Flex Direction
54
+ ========================================================================== */
55
+ .flex-row {
56
+ flex-direction: row;
57
+ }
58
+
59
+ .flex-row-reverse {
60
+ flex-direction: row-reverse;
61
+ }
62
+
63
+ .flex-col {
64
+ flex-direction: column;
65
+ }
66
+
67
+ .flex-col-reverse {
68
+ flex-direction: column-reverse;
69
+ }
70
+
71
+ /* Flex Wrap
72
+ ========================================================================== */
73
+ .flex-wrap {
74
+ flex-wrap: wrap;
75
+ }
76
+
77
+ .flex-wrap-reverse {
78
+ flex-wrap: wrap-reverse;
79
+ }
80
+
81
+ .flex-nowrap {
82
+ flex-wrap: nowrap;
83
+ }
84
+
85
+ /* Justify Content (Main Axis)
86
+ ========================================================================== */
87
+ .justify-start {
88
+ justify-content: flex-start;
89
+ }
90
+
91
+ .justify-end {
92
+ justify-content: flex-end;
93
+ }
94
+
95
+ .justify-center {
96
+ justify-content: center;
97
+ }
98
+
99
+ .justify-between {
100
+ justify-content: space-between;
101
+ }
102
+
103
+ .justify-around {
104
+ justify-content: space-around;
105
+ }
106
+
107
+ .justify-evenly {
108
+ justify-content: space-evenly;
109
+ }
110
+
111
+ /* Align Items (Cross Axis)
112
+ ========================================================================== */
113
+ .items-start {
114
+ align-items: flex-start;
115
+ }
116
+
117
+ .items-end {
118
+ align-items: flex-end;
119
+ }
120
+
121
+ .items-center {
122
+ align-items: center;
123
+ }
124
+
125
+ .items-baseline {
126
+ align-items: baseline;
127
+ }
128
+
129
+ .items-stretch {
130
+ align-items: stretch;
131
+ }
132
+
133
+ /* Align Content (Multi-line)
134
+ ========================================================================== */
135
+ .content-start {
136
+ align-content: flex-start;
137
+ }
138
+
139
+ .content-end {
140
+ align-content: flex-end;
141
+ }
142
+
143
+ .content-center {
144
+ align-content: center;
145
+ }
146
+
147
+ .content-between {
148
+ align-content: space-between;
149
+ }
150
+
151
+ .content-around {
152
+ align-content: space-around;
153
+ }
154
+
155
+ .content-evenly {
156
+ align-content: space-evenly;
157
+ }
158
+
159
+ .content-stretch {
160
+ align-content: stretch;
161
+ }
162
+
163
+ /* Align Self (Individual Items)
164
+ ========================================================================== */
165
+ .self-auto {
166
+ align-self: auto;
167
+ }
168
+
169
+ .self-start {
170
+ align-self: flex-start;
171
+ }
172
+
173
+ .self-end {
174
+ align-self: flex-end;
175
+ }
176
+
177
+ .self-center {
178
+ align-self: center;
179
+ }
180
+
181
+ .self-baseline {
182
+ align-self: baseline;
183
+ }
184
+
185
+ .self-stretch {
186
+ align-self: stretch;
187
+ }
188
+
189
+ /* Flex Item Sizing
190
+ ========================================================================== */
191
+
192
+ /* Flex grow */
193
+ .flex-grow-0 {
194
+ flex-grow: 0;
195
+ }
196
+
197
+ .flex-grow-1 {
198
+ flex-grow: 1;
199
+ }
200
+
201
+ /* Flex shrink */
202
+ .flex-shrink-0 {
203
+ flex-shrink: 0;
204
+ }
205
+
206
+ .flex-shrink-1 {
207
+ flex-shrink: 1;
208
+ }
209
+
210
+ /* Flex basis */
211
+ .flex-basis-auto {
212
+ flex-basis: auto;
213
+ }
214
+
215
+ .flex-basis-0 {
216
+ flex-basis: 0;
217
+ }
218
+
219
+ .flex-basis-full {
220
+ flex-basis: 100%;
221
+ }
222
+
223
+ /* Flex shorthand utilities */
224
+ .flex-1 {
225
+ flex: 1 1 0%;
226
+ }
227
+
228
+ .flex-auto {
229
+ flex: 1 1 auto;
230
+ }
231
+
232
+ .flex-initial {
233
+ flex: 0 1 auto;
234
+ }
235
+
236
+ .flex-none {
237
+ flex: none;
238
+ }
239
+
240
+ /* Gap Utilities
241
+ ========================================================================== */
242
+ .gap-0 {
243
+ gap: 0;
244
+ }
245
+
246
+ .gap-xs {
247
+ gap: var(--flex-gap-xs);
248
+ }
249
+
250
+ .gap-sm {
251
+ gap: var(--flex-gap-sm);
252
+ }
253
+
254
+ .gap-md {
255
+ gap: var(--flex-gap-md);
256
+ }
257
+
258
+ .gap-lg {
259
+ gap: var(--flex-gap-lg);
260
+ }
261
+
262
+ .gap-xl {
263
+ gap: var(--flex-gap-xl);
264
+ }
265
+
266
+ /* Row gap */
267
+ .row-gap-0 {
268
+ row-gap: 0;
269
+ }
270
+
271
+ .row-gap-xs {
272
+ row-gap: var(--flex-gap-xs);
273
+ }
274
+
275
+ .row-gap-sm {
276
+ row-gap: var(--flex-gap-sm);
277
+ }
278
+
279
+ .row-gap-md {
280
+ row-gap: var(--flex-gap-md);
281
+ }
282
+
283
+ .row-gap-lg {
284
+ row-gap: var(--flex-gap-lg);
285
+ }
286
+
287
+ .row-gap-xl {
288
+ row-gap: var(--flex-gap-xl);
289
+ }
290
+
291
+ /* Column gap */
292
+ .col-gap-0 {
293
+ column-gap: 0;
294
+ }
295
+
296
+ .col-gap-xs {
297
+ column-gap: var(--flex-gap-xs);
298
+ }
299
+
300
+ .col-gap-sm {
301
+ column-gap: var(--flex-gap-sm);
302
+ }
303
+
304
+ .col-gap-md {
305
+ column-gap: var(--flex-gap-md);
306
+ }
307
+
308
+ .col-gap-lg {
309
+ column-gap: var(--flex-gap-lg);
310
+ }
311
+
312
+ .col-gap-xl {
313
+ column-gap: var(--flex-gap-xl);
314
+ }
315
+
316
+ /* Common Flex Patterns
317
+ ========================================================================== */
318
+
319
+ /* Center content both axes */
320
+ .flex-center {
321
+ display: flex;
322
+ align-items: center;
323
+ justify-content: center;
324
+ }
325
+
326
+ /* Space between with center alignment */
327
+ .flex-between {
328
+ display: flex;
329
+ justify-content: space-between;
330
+ align-items: center;
331
+ }
332
+
333
+ /* Space around with center alignment */
334
+ .flex-around {
335
+ display: flex;
336
+ justify-content: space-around;
337
+ align-items: center;
338
+ }
339
+
340
+ /* Stack - column layout with gap */
341
+ .flex-stack {
342
+ display: flex;
343
+ flex-direction: column;
344
+ gap: var(--flex-gap-sm);
345
+ }
346
+
347
+ /* Spread - equal width children */
348
+ .flex-spread > * {
349
+ flex: 1 1 0%;
350
+ }
351
+
352
+ /* Order utilities
353
+ ========================================================================== */
354
+ .order-first {
355
+ order: -1;
356
+ }
357
+
358
+ .order-last {
359
+ order: 999;
360
+ }
361
+
362
+ .order-none {
363
+ order: 0;
364
+ }
365
+
366
+ /* Responsive Utilities - Small (sm: 30rem / 480px)
367
+ ========================================================================== */
368
+ @media (width >= 30rem) {
369
+ /* Direction */
370
+ .sm\:flex-row {
371
+ flex-direction: row;
372
+ }
373
+
374
+ .sm\:flex-row-reverse {
375
+ flex-direction: row-reverse;
376
+ }
377
+
378
+ .sm\:flex-col {
379
+ flex-direction: column;
380
+ }
381
+
382
+ .sm\:flex-col-reverse {
383
+ flex-direction: column-reverse;
384
+ }
385
+
386
+ /* Wrap */
387
+ .sm\:flex-wrap {
388
+ flex-wrap: wrap;
389
+ }
390
+
391
+ .sm\:flex-nowrap {
392
+ flex-wrap: nowrap;
393
+ }
394
+
395
+ /* Justify */
396
+ .sm\:justify-start {
397
+ justify-content: flex-start;
398
+ }
399
+
400
+ .sm\:justify-end {
401
+ justify-content: flex-end;
402
+ }
403
+
404
+ .sm\:justify-center {
405
+ justify-content: center;
406
+ }
407
+
408
+ .sm\:justify-between {
409
+ justify-content: space-between;
410
+ }
411
+
412
+ .sm\:justify-around {
413
+ justify-content: space-around;
414
+ }
415
+
416
+ .sm\:justify-evenly {
417
+ justify-content: space-evenly;
418
+ }
419
+
420
+ /* Align Items */
421
+ .sm\:items-start {
422
+ align-items: flex-start;
423
+ }
424
+
425
+ .sm\:items-end {
426
+ align-items: flex-end;
427
+ }
428
+
429
+ .sm\:items-center {
430
+ align-items: center;
431
+ }
432
+
433
+ .sm\:items-baseline {
434
+ align-items: baseline;
435
+ }
436
+
437
+ .sm\:items-stretch {
438
+ align-items: stretch;
439
+ }
440
+
441
+ /* Gaps */
442
+ .sm\:gap-0 {
443
+ gap: 0;
444
+ }
445
+
446
+ .sm\:gap-xs {
447
+ gap: var(--flex-gap-xs);
448
+ }
449
+
450
+ .sm\:gap-sm {
451
+ gap: var(--flex-gap-sm);
452
+ }
453
+
454
+ .sm\:gap-md {
455
+ gap: var(--flex-gap-md);
456
+ }
457
+
458
+ .sm\:gap-lg {
459
+ gap: var(--flex-gap-lg);
460
+ }
461
+
462
+ .sm\:gap-xl {
463
+ gap: var(--flex-gap-xl);
464
+ }
465
+
466
+ /* Flex sizing */
467
+ .sm\:flex-1 {
468
+ flex: 1 1 0%;
469
+ }
470
+
471
+ .sm\:flex-auto {
472
+ flex: 1 1 auto;
473
+ }
474
+
475
+ .sm\:flex-none {
476
+ flex: none;
477
+ }
478
+ }
479
+
480
+ /* Responsive Utilities - Medium (md: 48rem / 768px)
481
+ ========================================================================== */
482
+ @media (width >= 48rem) {
483
+ /* Direction */
484
+ .md\:flex-row {
485
+ flex-direction: row;
486
+ }
487
+
488
+ .md\:flex-row-reverse {
489
+ flex-direction: row-reverse;
490
+ }
491
+
492
+ .md\:flex-col {
493
+ flex-direction: column;
494
+ }
495
+
496
+ .md\:flex-col-reverse {
497
+ flex-direction: column-reverse;
498
+ }
499
+
500
+ /* Wrap */
501
+ .md\:flex-wrap {
502
+ flex-wrap: wrap;
503
+ }
504
+
505
+ .md\:flex-nowrap {
506
+ flex-wrap: nowrap;
507
+ }
508
+
509
+ /* Justify */
510
+ .md\:justify-start {
511
+ justify-content: flex-start;
512
+ }
513
+
514
+ .md\:justify-end {
515
+ justify-content: flex-end;
516
+ }
517
+
518
+ .md\:justify-center {
519
+ justify-content: center;
520
+ }
521
+
522
+ .md\:justify-between {
523
+ justify-content: space-between;
524
+ }
525
+
526
+ .md\:justify-around {
527
+ justify-content: space-around;
528
+ }
529
+
530
+ .md\:justify-evenly {
531
+ justify-content: space-evenly;
532
+ }
533
+
534
+ /* Align Items */
535
+ .md\:items-start {
536
+ align-items: flex-start;
537
+ }
538
+
539
+ .md\:items-end {
540
+ align-items: flex-end;
541
+ }
542
+
543
+ .md\:items-center {
544
+ align-items: center;
545
+ }
546
+
547
+ .md\:items-baseline {
548
+ align-items: baseline;
549
+ }
550
+
551
+ .md\:items-stretch {
552
+ align-items: stretch;
553
+ }
554
+
555
+ /* Gaps */
556
+ .md\:gap-0 {
557
+ gap: 0;
558
+ }
559
+
560
+ .md\:gap-xs {
561
+ gap: var(--flex-gap-xs);
562
+ }
563
+
564
+ .md\:gap-sm {
565
+ gap: var(--flex-gap-sm);
566
+ }
567
+
568
+ .md\:gap-md {
569
+ gap: var(--flex-gap-md);
570
+ }
571
+
572
+ .md\:gap-lg {
573
+ gap: var(--flex-gap-lg);
574
+ }
575
+
576
+ .md\:gap-xl {
577
+ gap: var(--flex-gap-xl);
578
+ }
579
+
580
+ /* Flex sizing */
581
+ .md\:flex-1 {
582
+ flex: 1 1 0%;
583
+ }
584
+
585
+ .md\:flex-auto {
586
+ flex: 1 1 auto;
587
+ }
588
+
589
+ .md\:flex-none {
590
+ flex: none;
591
+ }
592
+
593
+ /* Common patterns at medium breakpoint */
594
+ .flex-stack {
595
+ flex-direction: row;
596
+ align-items: center;
597
+ gap: var(--flex-gap-md);
598
+ }
599
+ }
600
+
601
+ /* Responsive Utilities - Large (lg: 62rem / 992px)
602
+ ========================================================================== */
603
+ @media (width >= 62rem) {
604
+ /* Direction */
605
+ .lg\:flex-row {
606
+ flex-direction: row;
607
+ }
608
+
609
+ .lg\:flex-row-reverse {
610
+ flex-direction: row-reverse;
611
+ }
612
+
613
+ .lg\:flex-col {
614
+ flex-direction: column;
615
+ }
616
+
617
+ .lg\:flex-col-reverse {
618
+ flex-direction: column-reverse;
619
+ }
620
+
621
+ /* Wrap */
622
+ .lg\:flex-wrap {
623
+ flex-wrap: wrap;
624
+ }
625
+
626
+ .lg\:flex-nowrap {
627
+ flex-wrap: nowrap;
628
+ }
629
+
630
+ /* Justify */
631
+ .lg\:justify-start {
632
+ justify-content: flex-start;
633
+ }
634
+
635
+ .lg\:justify-end {
636
+ justify-content: flex-end;
637
+ }
638
+
639
+ .lg\:justify-center {
640
+ justify-content: center;
641
+ }
642
+
643
+ .lg\:justify-between {
644
+ justify-content: space-between;
645
+ }
646
+
647
+ .lg\:justify-around {
648
+ justify-content: space-around;
649
+ }
650
+
651
+ .lg\:justify-evenly {
652
+ justify-content: space-evenly;
653
+ }
654
+
655
+ /* Align Items */
656
+ .lg\:items-start {
657
+ align-items: flex-start;
658
+ }
659
+
660
+ .lg\:items-end {
661
+ align-items: flex-end;
662
+ }
663
+
664
+ .lg\:items-center {
665
+ align-items: center;
666
+ }
667
+
668
+ .lg\:items-baseline {
669
+ align-items: baseline;
670
+ }
671
+
672
+ .lg\:items-stretch {
673
+ align-items: stretch;
674
+ }
675
+
676
+ /* Gaps */
677
+ .lg\:gap-0 {
678
+ gap: 0;
679
+ }
680
+
681
+ .lg\:gap-xs {
682
+ gap: var(--flex-gap-xs);
683
+ }
684
+
685
+ .lg\:gap-sm {
686
+ gap: var(--flex-gap-sm);
687
+ }
688
+
689
+ .lg\:gap-md {
690
+ gap: var(--flex-gap-md);
691
+ }
692
+
693
+ .lg\:gap-lg {
694
+ gap: var(--flex-gap-lg);
695
+ }
696
+
697
+ .lg\:gap-xl {
698
+ gap: var(--flex-gap-xl);
699
+ }
700
+
701
+ /* Flex sizing */
702
+ .lg\:flex-1 {
703
+ flex: 1 1 0%;
704
+ }
705
+
706
+ .lg\:flex-auto {
707
+ flex: 1 1 auto;
708
+ }
709
+
710
+ .lg\:flex-none {
711
+ flex: none;
712
+ }
713
+
714
+ /* Increase gaps at large screens */
715
+ .flex,
716
+ .flex-inline {
717
+ gap: var(--flex-gap-md);
718
+ }
719
+
720
+ .flex-stack {
721
+ gap: var(--flex-gap-lg);
722
+ }
723
+ }
724
+
725
+ /* Responsive Utilities - Extra Large (xl: 80rem / 1280px)
726
+ ========================================================================== */
727
+ @media (width >= 80rem) {
728
+ /* Direction */
729
+ .xl\:flex-row {
730
+ flex-direction: row;
731
+ }
732
+
733
+ .xl\:flex-row-reverse {
734
+ flex-direction: row-reverse;
735
+ }
736
+
737
+ .xl\:flex-col {
738
+ flex-direction: column;
739
+ }
740
+
741
+ .xl\:flex-col-reverse {
742
+ flex-direction: column-reverse;
743
+ }
744
+
745
+ /* Wrap */
746
+ .xl\:flex-wrap {
747
+ flex-wrap: wrap;
748
+ }
749
+
750
+ .xl\:flex-nowrap {
751
+ flex-wrap: nowrap;
752
+ }
753
+
754
+ /* Justify */
755
+ .xl\:justify-start {
756
+ justify-content: flex-start;
757
+ }
758
+
759
+ .xl\:justify-end {
760
+ justify-content: flex-end;
761
+ }
762
+
763
+ .xl\:justify-center {
764
+ justify-content: center;
765
+ }
766
+
767
+ .xl\:justify-between {
768
+ justify-content: space-between;
769
+ }
770
+
771
+ .xl\:justify-around {
772
+ justify-content: space-around;
773
+ }
774
+
775
+ .xl\:justify-evenly {
776
+ justify-content: space-evenly;
777
+ }
778
+
779
+ /* Align Items */
780
+ .xl\:items-start {
781
+ align-items: flex-start;
782
+ }
783
+
784
+ .xl\:items-end {
785
+ align-items: flex-end;
786
+ }
787
+
788
+ .xl\:items-center {
789
+ align-items: center;
790
+ }
791
+
792
+ .xl\:items-baseline {
793
+ align-items: baseline;
794
+ }
795
+
796
+ .xl\:items-stretch {
797
+ align-items: stretch;
798
+ }
799
+
800
+ /* Gaps */
801
+ .xl\:gap-0 {
802
+ gap: 0;
803
+ }
804
+
805
+ .xl\:gap-xs {
806
+ gap: var(--flex-gap-xs);
807
+ }
808
+
809
+ .xl\:gap-sm {
810
+ gap: var(--flex-gap-sm);
811
+ }
812
+
813
+ .xl\:gap-md {
814
+ gap: var(--flex-gap-md);
815
+ }
816
+
817
+ .xl\:gap-lg {
818
+ gap: var(--flex-gap-lg);
819
+ }
820
+
821
+ .xl\:gap-xl {
822
+ gap: var(--flex-gap-xl);
823
+ }
824
+
825
+ /* Flex sizing */
826
+ .xl\:flex-1 {
827
+ flex: 1 1 0%;
828
+ }
829
+
830
+ .xl\:flex-auto {
831
+ flex: 1 1 auto;
832
+ }
833
+
834
+ .xl\:flex-none {
835
+ flex: none;
836
+ }
837
+
838
+ /* Maximum gaps at extra large screens */
839
+ .flex,
840
+ .flex-inline {
841
+ gap: var(--flex-gap-lg);
842
+ }
843
+
844
+ .flex-stack {
845
+ gap: var(--flex-gap-xl);
846
+ }
847
+ }