@phpsoftbox/react-softbox 1.16.0 → 2.0.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 (78) hide show
  1. package/README.md +10 -0
  2. package/dist/components/Alert/Alert.js +8 -0
  3. package/dist/components/Alert/Alert.js.map +1 -1
  4. package/dist/components/Alert/Alert.module.css +65 -33
  5. package/dist/components/Badge/Badge.d.ts +4 -1
  6. package/dist/components/Badge/Badge.js +25 -3
  7. package/dist/components/Badge/Badge.js.map +1 -1
  8. package/dist/components/Badge/Badge.module.css +89 -32
  9. package/dist/components/Button/Button.d.ts +11 -2
  10. package/dist/components/Button/Button.js +20 -1
  11. package/dist/components/Button/Button.js.map +1 -1
  12. package/dist/components/Card/Card.d.ts +3 -1
  13. package/dist/components/Card/Card.js +9 -3
  14. package/dist/components/Card/Card.js.map +1 -1
  15. package/dist/components/Card/Card.module.css +8 -2
  16. package/dist/components/CollapseButton/CollapseButton.module.css +1 -1
  17. package/dist/components/Drawer/Drawer.module.css +1 -0
  18. package/dist/components/FileUploader/FileUploader.module.css +6 -6
  19. package/dist/components/Image/Image.module.css +2 -2
  20. package/dist/components/Input/Checkbox/Checkbox.module.css +2 -2
  21. package/dist/components/Input/ErrorTooltip/ErrorTooltip.module.css +1 -1
  22. package/dist/components/Input/FloatLabel/FloatLabel.module.css +2 -2
  23. package/dist/components/Input/FormField/FormField.module.css +2 -2
  24. package/dist/components/Input/Hint/Hint.module.css +1 -1
  25. package/dist/components/Input/Input.d.ts +12 -2
  26. package/dist/components/Input/Input.js +4 -1
  27. package/dist/components/Input/Input.js.map +1 -1
  28. package/dist/components/Input/Input.module.css +1 -1
  29. package/dist/components/Input/InputGroup.d.ts +14 -3
  30. package/dist/components/Input/InputGroup.js +27 -4
  31. package/dist/components/Input/InputGroup.js.map +1 -1
  32. package/dist/components/Input/InputGroup.module.css +83 -7
  33. package/dist/components/Input/Radio/Radio.js +1 -1
  34. package/dist/components/Input/Radio/Radio.js.map +1 -1
  35. package/dist/components/Input/Radio/Radio.module.css +2 -2
  36. package/dist/components/Input/Select/Select.d.ts +2 -1
  37. package/dist/components/Input/Select/Select.js +2 -2
  38. package/dist/components/Input/Select/Select.js.map +1 -1
  39. package/dist/components/Input/Select/Select.module.css +22 -9
  40. package/dist/components/Input/Switch/Switch.module.css +2 -2
  41. package/dist/components/Input/Textarea/Textarea.module.css +1 -1
  42. package/dist/components/MarkdownEditor/MarkdownEditor.module.css +51 -17
  43. package/dist/components/Menu/Menu.module.css +3 -3
  44. package/dist/components/Modal/Modal.module.css +1 -1
  45. package/dist/components/Notifier/Notifier.js +4 -0
  46. package/dist/components/Notifier/Notifier.js.map +1 -1
  47. package/dist/components/Notifier/Notifier.module.css +38 -16
  48. package/dist/components/Pagination/Pagination.module.css +1 -1
  49. package/dist/components/Progress/Progress.js +4 -0
  50. package/dist/components/Progress/Progress.js.map +1 -1
  51. package/dist/components/Progress/Progress.module.css +24 -8
  52. package/dist/components/Table/Table.js +4 -0
  53. package/dist/components/Table/Table.js.map +1 -1
  54. package/dist/components/Table/Table.module.css +24 -8
  55. package/dist/components/Tooltip/Tooltip.module.css +1 -1
  56. package/dist/components/Typography/Heading.js +4 -0
  57. package/dist/components/Typography/Heading.js.map +1 -1
  58. package/dist/components/Typography/Text.js +4 -0
  59. package/dist/components/Typography/Text.js.map +1 -1
  60. package/dist/components/Typography/Typography.module.css +22 -6
  61. package/dist/components/Wizard/Wizard.d.ts +2 -0
  62. package/dist/components/Wizard/Wizard.js +24 -2
  63. package/dist/components/Wizard/Wizard.js.map +1 -1
  64. package/dist/components/Wizard/Wizard.module.css +54 -40
  65. package/dist/foundations/buttons.css +268 -54
  66. package/dist/foundations/layout.css +2 -2
  67. package/dist/foundations/tabs.css +3 -3
  68. package/dist/foundations/tokens.css +304 -74
  69. package/dist/foundations/utilities.css +738 -0
  70. package/dist/index.d.ts +1 -1
  71. package/dist/index.js.map +1 -1
  72. package/dist/types.d.ts +1 -1
  73. package/docs/card.md +2 -1
  74. package/docs/feedback.md +8 -1
  75. package/docs/forms.md +28 -2
  76. package/docs/layout.md +42 -2
  77. package/docs/theme.md +46 -2
  78. package/package.json +1 -1
@@ -34,10 +34,730 @@
34
34
  font-size: var(--font-size-9) !important;
35
35
  }
36
36
 
37
+ .fw-normal {
38
+ font-weight: 400 !important;
39
+ }
40
+
41
+ .fw-medium {
42
+ font-weight: 500 !important;
43
+ }
44
+
45
+ .fw-semibold {
46
+ font-weight: 600 !important;
47
+ }
48
+
49
+ .fw-bold {
50
+ font-weight: 700 !important;
51
+ }
52
+
53
+ .lh-1 {
54
+ line-height: 1 !important;
55
+ }
56
+
57
+ .lh-sm {
58
+ line-height: 1.25 !important;
59
+ }
60
+
61
+ .lh-base {
62
+ line-height: 1.5 !important;
63
+ }
64
+
65
+ .lh-lg {
66
+ line-height: 1.75 !important;
67
+ }
68
+
69
+ .text-body {
70
+ color: var(--color-text) !important;
71
+ }
72
+
73
+ .text-muted {
74
+ color: var(--color-muted) !important;
75
+ }
76
+
77
+ .text-muted-2 {
78
+ color: var(--color-muted-2) !important;
79
+ }
80
+
81
+ .text-inherit {
82
+ color: inherit !important;
83
+ }
84
+
85
+ .text-default {
86
+ color: var(--variant-default-accent) !important;
87
+ }
88
+
89
+ .text-primary {
90
+ color: var(--variant-primary-accent) !important;
91
+ }
92
+
93
+ .text-secondary {
94
+ color: var(--variant-secondary-accent) !important;
95
+ }
96
+
97
+ .text-info {
98
+ color: var(--variant-info-accent) !important;
99
+ }
100
+
101
+ .text-success {
102
+ color: var(--variant-success-accent) !important;
103
+ }
104
+
105
+ .text-warning {
106
+ color: var(--variant-warning-accent) !important;
107
+ }
108
+
109
+ .text-danger {
110
+ color: var(--variant-danger-accent) !important;
111
+ }
112
+
113
+ .text-dark {
114
+ color: var(--variant-dark-accent) !important;
115
+ }
116
+
117
+ .text-light {
118
+ color: var(--variant-light-accent) !important;
119
+ }
120
+
121
+ .text-neutral {
122
+ color: var(--variant-neutral-accent) !important;
123
+ }
124
+
125
+ .text-start {
126
+ text-align: left !important;
127
+ }
128
+
129
+ .text-center {
130
+ text-align: center !important;
131
+ }
132
+
133
+ .text-end {
134
+ text-align: right !important;
135
+ }
136
+
137
+ .text-wrap {
138
+ white-space: normal !important;
139
+ }
140
+
141
+ .text-nowrap {
142
+ white-space: nowrap !important;
143
+ }
144
+
145
+ .text-break {
146
+ overflow-wrap: anywhere !important;
147
+ word-break: break-word !important;
148
+ }
149
+
150
+ .text-truncate {
151
+ overflow: hidden !important;
152
+ text-overflow: ellipsis !important;
153
+ white-space: nowrap !important;
154
+ }
155
+
156
+ .text-lowercase {
157
+ text-transform: lowercase !important;
158
+ }
159
+
160
+ .text-uppercase {
161
+ text-transform: uppercase !important;
162
+ }
163
+
164
+ .text-capitalize {
165
+ text-transform: capitalize !important;
166
+ }
167
+
168
+ .text-normalcase {
169
+ text-transform: none !important;
170
+ }
171
+
172
+ .line-clamp-1,
173
+ .line-clamp-2,
174
+ .line-clamp-3 {
175
+ display: -webkit-box !important;
176
+ overflow: hidden !important;
177
+ -webkit-box-orient: vertical !important;
178
+ }
179
+
180
+ .line-clamp-1 {
181
+ -webkit-line-clamp: 1;
182
+ }
183
+
184
+ .line-clamp-2 {
185
+ -webkit-line-clamp: 2;
186
+ }
187
+
188
+ .line-clamp-3 {
189
+ -webkit-line-clamp: 3;
190
+ }
191
+
192
+ .bg-surface {
193
+ background: var(--color-surface) !important;
194
+ }
195
+
196
+ .bg-surface-2 {
197
+ background: var(--color-surface-2) !important;
198
+ }
199
+
200
+ .bg-panel {
201
+ background: var(--surface-panel) !important;
202
+ }
203
+
204
+ .bg-transparent {
205
+ background: transparent !important;
206
+ }
207
+
208
+ .bg-default {
209
+ background: var(--variant-default-bg) !important;
210
+ color: var(--variant-default-text) !important;
211
+ }
212
+
213
+ .bg-primary {
214
+ background: var(--variant-primary-bg) !important;
215
+ color: var(--variant-primary-text) !important;
216
+ }
217
+
218
+ .bg-secondary {
219
+ background: var(--variant-secondary-bg) !important;
220
+ color: var(--variant-secondary-text) !important;
221
+ }
222
+
223
+ .bg-info {
224
+ background: var(--variant-info-bg) !important;
225
+ color: var(--variant-info-text) !important;
226
+ }
227
+
228
+ .bg-success {
229
+ background: var(--variant-success-bg) !important;
230
+ color: var(--variant-success-text) !important;
231
+ }
232
+
233
+ .bg-warning {
234
+ background: var(--variant-warning-bg) !important;
235
+ color: var(--variant-warning-text) !important;
236
+ }
237
+
238
+ .bg-danger {
239
+ background: var(--variant-danger-bg) !important;
240
+ color: var(--variant-danger-text) !important;
241
+ }
242
+
243
+ .bg-dark {
244
+ background: var(--variant-dark-bg) !important;
245
+ color: var(--variant-dark-text) !important;
246
+ }
247
+
248
+ .bg-light {
249
+ background: var(--variant-light-bg) !important;
250
+ color: var(--variant-light-text) !important;
251
+ }
252
+
253
+ .bg-neutral {
254
+ background: var(--variant-neutral-bg) !important;
255
+ color: var(--variant-neutral-text) !important;
256
+ }
257
+
258
+ .bg-default-soft {
259
+ background: var(--variant-default-soft) !important;
260
+ }
261
+
262
+ .bg-primary-soft {
263
+ background: var(--variant-primary-soft) !important;
264
+ }
265
+
266
+ .bg-secondary-soft {
267
+ background: var(--variant-secondary-soft) !important;
268
+ }
269
+
270
+ .bg-info-soft {
271
+ background: var(--variant-info-soft) !important;
272
+ }
273
+
274
+ .bg-success-soft {
275
+ background: var(--variant-success-soft) !important;
276
+ }
277
+
278
+ .bg-warning-soft {
279
+ background: var(--variant-warning-soft) !important;
280
+ }
281
+
282
+ .bg-danger-soft {
283
+ background: var(--variant-danger-soft) !important;
284
+ }
285
+
286
+ .bg-dark-soft {
287
+ background: var(--variant-dark-soft) !important;
288
+ }
289
+
290
+ .bg-light-soft {
291
+ background: var(--variant-light-soft) !important;
292
+ }
293
+
294
+ .bg-neutral-soft {
295
+ background: var(--variant-neutral-soft) !important;
296
+ }
297
+
298
+ .border {
299
+ border-style: solid !important;
300
+ border-width: var(--border-width-1) !important;
301
+ border-color: var(--ui-border-color, var(--color-line)) !important;
302
+ }
303
+
304
+ .border-0 {
305
+ border-width: 0 !important;
306
+ }
307
+
308
+ .border-top {
309
+ border-top-style: solid !important;
310
+ border-top-width: var(--border-width-1) !important;
311
+ border-top-color: var(--ui-border-color, var(--color-line)) !important;
312
+ }
313
+
314
+ .border-right {
315
+ border-right-style: solid !important;
316
+ border-right-width: var(--border-width-1) !important;
317
+ border-right-color: var(--ui-border-color, var(--color-line)) !important;
318
+ }
319
+
320
+ .border-bottom {
321
+ border-bottom-style: solid !important;
322
+ border-bottom-width: var(--border-width-1) !important;
323
+ border-bottom-color: var(--ui-border-color, var(--color-line)) !important;
324
+ }
325
+
326
+ .border-left {
327
+ border-left-style: solid !important;
328
+ border-left-width: var(--border-width-1) !important;
329
+ border-left-color: var(--ui-border-color, var(--color-line)) !important;
330
+ }
331
+
332
+ .border-1 {
333
+ border-width: var(--border-width-1) !important;
334
+ }
335
+
336
+ .border-2 {
337
+ border-width: var(--border-width-2) !important;
338
+ }
339
+
340
+ .border-3 {
341
+ border-width: var(--border-width-3) !important;
342
+ }
343
+
344
+ .border-default {
345
+ --ui-border-color: var(--variant-default-border);
346
+ border-color: var(--variant-default-border) !important;
347
+ }
348
+
349
+ .border-primary {
350
+ --ui-border-color: var(--variant-primary-border);
351
+ border-color: var(--variant-primary-border) !important;
352
+ }
353
+
354
+ .border-secondary {
355
+ --ui-border-color: var(--variant-secondary-border);
356
+ border-color: var(--variant-secondary-border) !important;
357
+ }
358
+
359
+ .border-info {
360
+ --ui-border-color: var(--variant-info-border);
361
+ border-color: var(--variant-info-border) !important;
362
+ }
363
+
364
+ .border-success {
365
+ --ui-border-color: var(--variant-success-border);
366
+ border-color: var(--variant-success-border) !important;
367
+ }
368
+
369
+ .border-warning {
370
+ --ui-border-color: var(--variant-warning-border);
371
+ border-color: var(--variant-warning-border) !important;
372
+ }
373
+
374
+ .border-danger {
375
+ --ui-border-color: var(--variant-danger-border);
376
+ border-color: var(--variant-danger-border) !important;
377
+ }
378
+
379
+ .border-dark {
380
+ --ui-border-color: var(--variant-dark-border);
381
+ border-color: var(--variant-dark-border) !important;
382
+ }
383
+
384
+ .border-light {
385
+ --ui-border-color: var(--variant-light-border);
386
+ border-color: var(--variant-light-border) !important;
387
+ }
388
+
389
+ .border-neutral {
390
+ --ui-border-color: var(--variant-neutral-border);
391
+ border-color: var(--variant-neutral-border) !important;
392
+ }
393
+
394
+ .rounded-0 {
395
+ border-radius: 0 !important;
396
+ }
397
+
398
+ .rounded {
399
+ border-radius: var(--radius-default) !important;
400
+ }
401
+
402
+ .rounded-xs {
403
+ border-radius: var(--radius-xs) !important;
404
+ }
405
+
406
+ .rounded-sm {
407
+ border-radius: var(--radius-sm) !important;
408
+ }
409
+
410
+ .rounded-md {
411
+ border-radius: var(--radius-md) !important;
412
+ }
413
+
414
+ .rounded-lg {
415
+ border-radius: var(--radius-lg) !important;
416
+ }
417
+
418
+ .rounded-pill {
419
+ border-radius: var(--radius-pill) !important;
420
+ }
421
+
422
+ .rounded-circle {
423
+ border-radius: var(--radius-circle) !important;
424
+ aspect-ratio: 1 / 1 !important;
425
+ }
426
+
427
+ .d-none {
428
+ display: none !important;
429
+ }
430
+
431
+ .d-block {
432
+ display: block !important;
433
+ }
434
+
435
+ .d-inline-block {
436
+ display: inline-block !important;
437
+ }
438
+
439
+ .d-flex {
440
+ display: flex !important;
441
+ }
442
+
443
+ .d-inline-flex {
444
+ display: inline-flex !important;
445
+ }
446
+
447
+ .d-grid {
448
+ display: grid !important;
449
+ }
450
+
451
+ .flex-row {
452
+ flex-direction: row !important;
453
+ }
454
+
455
+ .flex-column {
456
+ flex-direction: column !important;
457
+ }
458
+
459
+ .flex-wrap {
460
+ flex-wrap: wrap !important;
461
+ }
462
+
463
+ .flex-nowrap {
464
+ flex-wrap: nowrap !important;
465
+ }
466
+
467
+ .flex-1 {
468
+ flex: 1 1 0 !important;
469
+ min-width: 0;
470
+ }
471
+
472
+ .flex-auto {
473
+ flex: 1 1 auto !important;
474
+ }
475
+
476
+ .flex-none {
477
+ flex: none !important;
478
+ }
479
+
480
+ .grow-0 {
481
+ flex-grow: 0 !important;
482
+ }
483
+
484
+ .grow-1 {
485
+ flex-grow: 1 !important;
486
+ }
487
+
488
+ .shrink-0 {
489
+ flex-shrink: 0 !important;
490
+ }
491
+
492
+ .shrink-1 {
493
+ flex-shrink: 1 !important;
494
+ }
495
+
496
+ .items-start {
497
+ align-items: flex-start !important;
498
+ }
499
+
500
+ .items-center {
501
+ align-items: center !important;
502
+ }
503
+
504
+ .items-end {
505
+ align-items: flex-end !important;
506
+ }
507
+
508
+ .items-stretch {
509
+ align-items: stretch !important;
510
+ }
511
+
512
+ .justify-start {
513
+ justify-content: flex-start !important;
514
+ }
515
+
516
+ .justify-center {
517
+ justify-content: center !important;
518
+ }
519
+
520
+ .justify-end {
521
+ justify-content: flex-end !important;
522
+ }
523
+
524
+ .justify-between {
525
+ justify-content: space-between !important;
526
+ }
527
+
528
+ .justify-around {
529
+ justify-content: space-around !important;
530
+ }
531
+
532
+ .justify-evenly {
533
+ justify-content: space-evenly !important;
534
+ }
535
+
536
+ .grid-cols-1 {
537
+ grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
538
+ }
539
+
540
+ .grid-cols-2 {
541
+ grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
542
+ }
543
+
544
+ .grid-cols-3 {
545
+ grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
546
+ }
547
+
548
+ .grid-cols-4 {
549
+ grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
550
+ }
551
+
552
+ .grid-cols-6 {
553
+ grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
554
+ }
555
+
556
+ .grid-cols-12 {
557
+ grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
558
+ }
559
+
560
+ .col-span-1 {
561
+ grid-column: span 1 / span 1 !important;
562
+ }
563
+
564
+ .col-span-2 {
565
+ grid-column: span 2 / span 2 !important;
566
+ }
567
+
568
+ .col-span-3 {
569
+ grid-column: span 3 / span 3 !important;
570
+ }
571
+
572
+ .col-span-4 {
573
+ grid-column: span 4 / span 4 !important;
574
+ }
575
+
576
+ .col-span-6 {
577
+ grid-column: span 6 / span 6 !important;
578
+ }
579
+
580
+ .col-span-12 {
581
+ grid-column: span 12 / span 12 !important;
582
+ }
583
+
584
+ .position-static {
585
+ position: static !important;
586
+ }
587
+
588
+ .position-relative {
589
+ position: relative !important;
590
+ }
591
+
592
+ .position-absolute {
593
+ position: absolute !important;
594
+ }
595
+
596
+ .position-fixed {
597
+ position: fixed !important;
598
+ }
599
+
600
+ .position-sticky {
601
+ position: sticky !important;
602
+ }
603
+
604
+ .inset-0 {
605
+ inset: 0 !important;
606
+ }
607
+
608
+ .top-0 {
609
+ top: 0 !important;
610
+ }
611
+
612
+ .top-100 {
613
+ top: 100% !important;
614
+ }
615
+
616
+ .right-0 {
617
+ right: 0 !important;
618
+ }
619
+
620
+ .right-100 {
621
+ right: 100% !important;
622
+ }
623
+
624
+ .bottom-0 {
625
+ bottom: 0 !important;
626
+ }
627
+
628
+ .bottom-100 {
629
+ bottom: 100% !important;
630
+ }
631
+
632
+ .left-0 {
633
+ left: 0 !important;
634
+ }
635
+
636
+ .left-100 {
637
+ left: 100% !important;
638
+ }
639
+
640
+ .translate-none {
641
+ transform: none !important;
642
+ }
643
+
644
+ .translate-middle {
645
+ transform: translate(-50%, -50%) !important;
646
+ }
647
+
648
+ .translate-middle-x {
649
+ transform: translateX(-50%) !important;
650
+ }
651
+
652
+ .translate-middle-y {
653
+ transform: translateY(-50%) !important;
654
+ }
655
+
656
+ .z-0 {
657
+ z-index: 0 !important;
658
+ }
659
+
660
+ .z-1 {
661
+ z-index: 1 !important;
662
+ }
663
+
664
+ .z-10 {
665
+ z-index: 10 !important;
666
+ }
667
+
668
+ .z-20 {
669
+ z-index: 20 !important;
670
+ }
671
+
672
+ .z-50 {
673
+ z-index: 50 !important;
674
+ }
675
+
676
+ .overflow-hidden {
677
+ overflow: hidden !important;
678
+ }
679
+
680
+ .overflow-auto {
681
+ overflow: auto !important;
682
+ }
683
+
684
+ .w-100 {
685
+ width: 100% !important;
686
+ }
687
+
688
+ .h-100 {
689
+ height: 100% !important;
690
+ }
691
+
692
+ .size-1 {
693
+ width: var(--spacing-1) !important;
694
+ height: var(--spacing-1) !important;
695
+ }
696
+
697
+ .size-2 {
698
+ width: var(--spacing-2) !important;
699
+ height: var(--spacing-2) !important;
700
+ }
701
+
702
+ .size-3 {
703
+ width: var(--spacing-3) !important;
704
+ height: var(--spacing-3) !important;
705
+ }
706
+
707
+ .size-4 {
708
+ width: var(--spacing-4) !important;
709
+ height: var(--spacing-4) !important;
710
+ }
711
+
712
+ .size-5 {
713
+ width: var(--spacing-5) !important;
714
+ height: var(--spacing-5) !important;
715
+ }
716
+
717
+ .size-6 {
718
+ width: var(--spacing-6) !important;
719
+ height: var(--spacing-6) !important;
720
+ }
721
+
722
+ .size-7 {
723
+ width: var(--spacing-7) !important;
724
+ height: var(--spacing-7) !important;
725
+ }
726
+
727
+ .size-8 {
728
+ width: var(--spacing-8) !important;
729
+ height: var(--spacing-8) !important;
730
+ }
731
+
732
+ .size-9 {
733
+ width: var(--spacing-9) !important;
734
+ height: var(--spacing-9) !important;
735
+ }
736
+
737
+ .size-10 {
738
+ width: var(--spacing-10) !important;
739
+ height: var(--spacing-10) !important;
740
+ }
741
+
742
+ .min-w-0 {
743
+ min-width: 0 !important;
744
+ }
745
+
746
+ .stretched-link::after {
747
+ position: absolute;
748
+ inset: 0;
749
+ z-index: 1;
750
+ content: "";
751
+ }
752
+
37
753
  .gap-1 {
38
754
  gap: var(--spacing-1) !important;
39
755
  }
40
756
 
757
+ .gap-0 {
758
+ gap: 0 !important;
759
+ }
760
+
41
761
  .gap-2 {
42
762
  gap: var(--spacing-2) !important;
43
763
  }
@@ -78,6 +798,10 @@
78
798
  padding: var(--spacing-1) !important;
79
799
  }
80
800
 
801
+ .p-0 {
802
+ padding: 0 !important;
803
+ }
804
+
81
805
  .p-2 {
82
806
  padding: var(--spacing-2) !important;
83
807
  }
@@ -119,6 +843,11 @@
119
843
  padding-right: var(--spacing-1) !important;
120
844
  }
121
845
 
846
+ .px-0 {
847
+ padding-left: 0 !important;
848
+ padding-right: 0 !important;
849
+ }
850
+
122
851
  .px-2 {
123
852
  padding-left: var(--spacing-2) !important;
124
853
  padding-right: var(--spacing-2) !important;
@@ -169,6 +898,11 @@
169
898
  padding-bottom: var(--spacing-1) !important;
170
899
  }
171
900
 
901
+ .py-0 {
902
+ padding-top: 0 !important;
903
+ padding-bottom: 0 !important;
904
+ }
905
+
172
906
  .py-2 {
173
907
  padding-top: var(--spacing-2) !important;
174
908
  padding-bottom: var(--spacing-2) !important;
@@ -378,6 +1112,10 @@
378
1112
  margin: var(--spacing-1) !important;
379
1113
  }
380
1114
 
1115
+ .m-0 {
1116
+ margin: 0 !important;
1117
+ }
1118
+
381
1119
  .m-2 {
382
1120
  margin: var(--spacing-2) !important;
383
1121
  }