maz-ui 3.0.1 → 3.0.3
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.
- package/components/MazArrowIcon.js +1 -1
- package/components/MazAvatar.js +2 -2
- package/components/MazBadge.js +1 -1
- package/components/MazBottomSheet.js +2 -2
- package/components/MazBtn.js +2 -2
- package/components/MazCard.js +2 -2
- package/components/MazCarousel.js +2 -2
- package/components/MazCheckbox.d.ts +3 -3
- package/components/MazCheckbox.js +1 -1
- package/components/MazDialog.js +2 -2
- package/components/MazDialogPromise.js +2 -2
- package/components/MazDrawer.js +2 -2
- package/components/MazDropzone.js +1 -1
- package/components/MazGallery.js +1 -1
- package/components/MazInput.js +2 -2
- package/components/MazInputNumber.js +2 -2
- package/components/MazInputPrice.js +2 -2
- package/components/MazInputTags.js +2 -2
- package/components/MazLazyImg.js +1 -1
- package/components/MazPhoneNumberInput.js +2 -2
- package/components/MazPicker/MazPickerCalendar.d.ts +8 -0
- package/components/MazPicker/MazPickerCalendarMonth/MazPickerCalendarGrid.d.ts +8 -0
- package/components/MazPicker/MazPickerCalendarMonth/MazPickerCalendarMonth.d.ts +8 -0
- package/components/MazPicker/MazPickerContainer.d.ts +8 -0
- package/components/MazPicker/MazPickerShortcuts.d.ts +8 -0
- package/components/MazPicker/MazPickerTime.d.ts +8 -0
- package/components/MazPicker.d.ts +9 -0
- package/components/MazPicker.js +2 -2
- package/components/MazRadioButtons.js +1 -1
- package/components/MazSelect.js +2 -2
- package/components/MazSlider.js +2 -2
- package/components/MazSpinner.js +1 -1
- package/components/MazSwitch.js +1 -1
- package/components/MazTabsBar.js +2 -2
- package/components/MazTabsContentItem.js +1 -1
- package/components/MazTransitionExpand.js +1 -1
- package/css/main.css +603 -514
- package/modules/index.js +2 -2
- package/package.json +31 -28
- package/tailwindcss/tailwind.config.js +0 -1
package/css/main.css
CHANGED
|
@@ -384,35 +384,36 @@ html.dark {
|
|
|
384
384
|
* Tabs Transisiton
|
|
385
385
|
*/
|
|
386
386
|
|
|
387
|
-
.maz-tab-transition
|
|
387
|
+
.maz-tab-transition {
|
|
388
|
+
&-enter-from {
|
|
388
389
|
-webkit-transform: translate(100%, 0);
|
|
389
390
|
transform: translate(100%, 0);
|
|
390
391
|
}
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
.maz-tab-transition-leave-active {
|
|
392
|
+
&-leave,
|
|
393
|
+
&-leave-active {
|
|
394
394
|
position: absolute !important;
|
|
395
395
|
top: 0;
|
|
396
396
|
}
|
|
397
|
-
|
|
398
|
-
.maz-tab-transition-leave-to {
|
|
397
|
+
&-leave-to {
|
|
399
398
|
position: absolute !important;
|
|
400
399
|
-webkit-transform: translate(-100%, 0);
|
|
401
400
|
transform: translate(-100%, 0);
|
|
402
401
|
}
|
|
402
|
+
}
|
|
403
403
|
|
|
404
|
-
.maz-tab-reverse-transition
|
|
404
|
+
.maz-tab-reverse-transition {
|
|
405
|
+
&-enter-from {
|
|
405
406
|
-webkit-transform: translate(-100%, 0);
|
|
406
407
|
transform: translate(-100%, 0);
|
|
407
408
|
}
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
.maz-tab-reverse-transition-leave-to {
|
|
409
|
+
&-leave,
|
|
410
|
+
&-leave-to {
|
|
411
411
|
top: 0;
|
|
412
412
|
position: absolute !important;
|
|
413
413
|
-webkit-transform: translate(100%, 0);
|
|
414
414
|
transform: translate(100%, 0);
|
|
415
415
|
}
|
|
416
|
+
}
|
|
416
417
|
|
|
417
418
|
html.--backdrop-present {
|
|
418
419
|
overflow-y: hidden;
|
|
@@ -423,9 +424,7 @@ html.--backdrop-present {
|
|
|
423
424
|
.m-backdrop.bottom-sheet-anim-leave-active {
|
|
424
425
|
-webkit-transition: opacity ease-in-out 250ms;
|
|
425
426
|
transition: opacity ease-in-out 250ms;
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
.m-backdrop.bottom-sheet-anim-enter-active .m-backdrop-content, .m-backdrop.bottom-sheet-anim-leave-active .m-backdrop-content {
|
|
427
|
+
& .m-backdrop-content {
|
|
429
428
|
-webkit-transition: -webkit-transform ease-in-out 250ms;
|
|
430
429
|
transition: -webkit-transform ease-in-out 250ms;
|
|
431
430
|
transition: transform ease-in-out 250ms;
|
|
@@ -433,24 +432,22 @@ html.--backdrop-present {
|
|
|
433
432
|
-webkit-transform: translateY(0);
|
|
434
433
|
transform: translateY(0);
|
|
435
434
|
}
|
|
435
|
+
}
|
|
436
436
|
|
|
437
437
|
.m-backdrop.bottom-sheet-anim-enter-from,
|
|
438
438
|
.m-backdrop.bottom-sheet-anim-leave-to {
|
|
439
439
|
opacity: 0;
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
.m-backdrop.bottom-sheet-anim-enter-from .m-backdrop-content, .m-backdrop.bottom-sheet-anim-leave-to .m-backdrop-content {
|
|
440
|
+
& .m-backdrop-content {
|
|
443
441
|
-webkit-transform: translateY(100%);
|
|
444
442
|
transform: translateY(100%);
|
|
445
443
|
}
|
|
444
|
+
}
|
|
446
445
|
|
|
447
446
|
.m-backdrop.modal-anim-enter-active,
|
|
448
447
|
.m-backdrop.modal-anim-leave-active {
|
|
449
448
|
-webkit-transition: opacity ease-in-out 250ms;
|
|
450
449
|
transition: opacity ease-in-out 250ms;
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
.m-backdrop.modal-anim-enter-active .m-backdrop-content, .m-backdrop.modal-anim-leave-active .m-backdrop-content {
|
|
450
|
+
& .m-backdrop-content {
|
|
454
451
|
-webkit-transition: -webkit-transform ease-in-out 250ms;
|
|
455
452
|
transition: -webkit-transform ease-in-out 250ms;
|
|
456
453
|
transition: transform ease-in-out 250ms;
|
|
@@ -458,16 +455,16 @@ html.--backdrop-present {
|
|
|
458
455
|
-webkit-transform: translateY(0);
|
|
459
456
|
transform: translateY(0);
|
|
460
457
|
}
|
|
458
|
+
}
|
|
461
459
|
|
|
462
460
|
.m-backdrop.modal-anim-enter-from,
|
|
463
461
|
.m-backdrop.modal-anim-leave-to {
|
|
464
462
|
opacity: 0;
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
.m-backdrop.modal-anim-enter-from .m-backdrop-content, .m-backdrop.modal-anim-leave-to .m-backdrop-content {
|
|
463
|
+
& .m-backdrop-content {
|
|
468
464
|
-webkit-transform: translateY(-25px);
|
|
469
465
|
transform: translateY(-25px);
|
|
470
466
|
}
|
|
467
|
+
}
|
|
471
468
|
|
|
472
469
|
.m-backdrop.backdrop-anim-enter-active,
|
|
473
470
|
.m-backdrop.backdrop-anim-leave-active {
|
|
@@ -499,76 +496,87 @@ html.--backdrop-present {
|
|
|
499
496
|
-webkit-backdrop-filter: blur(3px);
|
|
500
497
|
backdrop-filter: blur(3px);
|
|
501
498
|
z-index: 1050;
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
.m-backdrop-overlay {
|
|
499
|
+
&-overlay {
|
|
505
500
|
-ms-touch-action: none;
|
|
506
|
-
touch-action: none
|
|
501
|
+
touch-action: none
|
|
502
|
+
}
|
|
503
|
+
&-overlay {
|
|
507
504
|
position: absolute;
|
|
505
|
+
}
|
|
506
|
+
&-overlay {
|
|
508
507
|
top: 0px;
|
|
509
508
|
right: 0px;
|
|
510
509
|
bottom: 0px;
|
|
511
510
|
left: 0px;
|
|
511
|
+
}
|
|
512
|
+
&-overlay {
|
|
512
513
|
background-color: var(--maz-bg-overlay);
|
|
513
514
|
}
|
|
514
|
-
|
|
515
|
-
|
|
515
|
+
&-overlay {
|
|
516
|
+
&:not(.--disabled) {
|
|
516
517
|
cursor: pointer;
|
|
517
518
|
}
|
|
518
|
-
|
|
519
|
-
|
|
519
|
+
}
|
|
520
|
+
&-content {
|
|
520
521
|
position: relative;
|
|
522
|
+
}
|
|
523
|
+
&-content {
|
|
521
524
|
z-index: 1;
|
|
522
525
|
}
|
|
523
|
-
|
|
524
|
-
.m-backdrop-content:focus {
|
|
526
|
+
&-content:focus {
|
|
525
527
|
outline: 2px solid transparent;
|
|
526
528
|
outline-offset: 2px;
|
|
527
529
|
}
|
|
528
|
-
|
|
529
|
-
|
|
530
|
+
&.--bottom-sheet {
|
|
531
|
+
& .m-backdrop-content {
|
|
530
532
|
position: absolute;
|
|
531
|
-
|
|
533
|
+
}
|
|
534
|
+
& .m-backdrop-content {
|
|
532
535
|
bottom: 0px;
|
|
536
|
+
}
|
|
537
|
+
& .m-backdrop-content {
|
|
533
538
|
left: 0px;
|
|
534
539
|
}
|
|
535
|
-
|
|
536
|
-
|
|
540
|
+
& .m-backdrop-content {
|
|
541
|
+
right: 0px;
|
|
542
|
+
}
|
|
543
|
+
}
|
|
544
|
+
&.--fullscreen {
|
|
537
545
|
-webkit-box-align: start;
|
|
538
546
|
-ms-flex-align: start;
|
|
539
|
-
align-items: flex-start
|
|
547
|
+
align-items: flex-start;
|
|
540
548
|
}
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
.m-backdrop.--fullscreen {
|
|
549
|
+
@media (min-width: 576px) {
|
|
550
|
+
&.--fullscreen {
|
|
544
551
|
-webkit-box-align: center;
|
|
545
552
|
-ms-flex-align: center;
|
|
546
553
|
align-items: center;
|
|
547
554
|
}
|
|
548
555
|
}
|
|
549
|
-
|
|
550
|
-
|
|
556
|
+
&.--fullscreen {
|
|
557
|
+
&.--center-top {
|
|
551
558
|
-webkit-box-align: start;
|
|
552
559
|
-ms-flex-align: start;
|
|
553
560
|
align-items: flex-start;
|
|
554
561
|
}
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
.m-backdrop.--fullscreen.--center-top {
|
|
562
|
+
@media (min-width: 576px) {
|
|
563
|
+
&.--center-top {
|
|
558
564
|
padding-top: 7rem;
|
|
559
565
|
}
|
|
560
566
|
}
|
|
561
|
-
|
|
562
|
-
.m-backdrop.--fullscreen .m-backdrop-content {
|
|
567
|
+
& .m-backdrop-content {
|
|
563
568
|
position: relative;
|
|
569
|
+
}
|
|
570
|
+
& .m-backdrop-content {
|
|
564
571
|
width: 100%;
|
|
565
572
|
}
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
.m-backdrop.--fullscreen .m-backdrop-content {
|
|
573
|
+
@media (min-width: 576px) {
|
|
574
|
+
& .m-backdrop-content {
|
|
569
575
|
width: auto;
|
|
570
576
|
}
|
|
571
577
|
}
|
|
578
|
+
}
|
|
579
|
+
}
|
|
572
580
|
|
|
573
581
|
.m-drawer {
|
|
574
582
|
-webkit-box-align: stretch;
|
|
@@ -577,119 +585,285 @@ html.--backdrop-present {
|
|
|
577
585
|
-webkit-box-pack: end;
|
|
578
586
|
-ms-flex-pack: end;
|
|
579
587
|
justify-content: flex-end;
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
.m-drawer .m-drawer-content-wrap {
|
|
588
|
+
& .m-drawer-content-wrap {
|
|
583
589
|
overflow-y: auto;
|
|
590
|
+
}
|
|
591
|
+
& .m-drawer-content-wrap {
|
|
584
592
|
background-color: var(--maz-color-bg-light);
|
|
593
|
+
}
|
|
594
|
+
& .m-drawer-content-wrap {
|
|
585
595
|
color: var(--maz-color-text);
|
|
586
596
|
}
|
|
587
|
-
|
|
588
|
-
.m-drawer .m-drawer-content-wrap > .m-drawer-header {
|
|
597
|
+
.m-drawer-content-wrap > .m-drawer-header {
|
|
589
598
|
z-index: 1;
|
|
599
|
+
}
|
|
600
|
+
.m-drawer-content-wrap > .m-drawer-header {
|
|
590
601
|
display: -webkit-box;
|
|
591
602
|
display: -ms-flexbox;
|
|
592
603
|
display: flex;
|
|
604
|
+
}
|
|
605
|
+
.m-drawer-content-wrap > .m-drawer-header {
|
|
593
606
|
height: 4rem;
|
|
607
|
+
}
|
|
608
|
+
.m-drawer-content-wrap > .m-drawer-header {
|
|
594
609
|
-ms-flex-negative: 0;
|
|
595
610
|
flex-shrink: 0;
|
|
611
|
+
}
|
|
612
|
+
.m-drawer-content-wrap > .m-drawer-header {
|
|
596
613
|
-webkit-box-align: center;
|
|
597
614
|
-ms-flex-align: center;
|
|
598
615
|
align-items: center;
|
|
616
|
+
}
|
|
617
|
+
.m-drawer-content-wrap > .m-drawer-header {
|
|
599
618
|
background-color: var(--maz-color-bg);
|
|
619
|
+
}
|
|
620
|
+
.m-drawer-content-wrap > .m-drawer-header {
|
|
600
621
|
background-clip: padding-box;
|
|
622
|
+
}
|
|
623
|
+
.m-drawer-content-wrap > .m-drawer-header {
|
|
601
624
|
padding-left: 1rem;
|
|
602
625
|
padding-right: 1rem;
|
|
626
|
+
}
|
|
627
|
+
.m-drawer-content-wrap > .m-drawer-header {
|
|
603
628
|
padding-top: 0.75rem;
|
|
604
629
|
padding-bottom: 0.75rem;
|
|
630
|
+
}
|
|
631
|
+
.m-drawer-content-wrap > .m-drawer-header {
|
|
605
632
|
-webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .1);
|
|
606
633
|
box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .1);
|
|
607
634
|
}
|
|
608
|
-
|
|
609
|
-
.m-drawer .m-drawer-content-wrap > .m-drawer-body {
|
|
635
|
+
.m-drawer-content-wrap > .m-drawer-body {
|
|
610
636
|
z-index: 0;
|
|
637
|
+
}
|
|
638
|
+
.m-drawer-content-wrap > .m-drawer-body {
|
|
611
639
|
min-height: 0px;
|
|
640
|
+
}
|
|
641
|
+
.m-drawer-content-wrap > .m-drawer-body {
|
|
612
642
|
-webkit-box-flex: 1;
|
|
613
643
|
-ms-flex: 1 1 0%;
|
|
614
644
|
flex: 1 1 0%;
|
|
645
|
+
}
|
|
646
|
+
.m-drawer-content-wrap > .m-drawer-body {
|
|
615
647
|
overflow-x: auto;
|
|
648
|
+
}
|
|
649
|
+
.m-drawer-content-wrap > .m-drawer-body {
|
|
616
650
|
background-color: var(--maz-color-bg-light);
|
|
617
|
-
background-clip: padding-box;
|
|
618
651
|
}
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
/* & .m-backdrop-content > .m-drawer-content-wrap {
|
|
622
|
-
@apply lap-s:maz-h-auto;
|
|
623
|
-
} */
|
|
652
|
+
.m-drawer-content-wrap > .m-drawer-body {
|
|
653
|
+
background-clip: padding-box;
|
|
624
654
|
}
|
|
625
|
-
|
|
626
|
-
|
|
655
|
+
&.--right {
|
|
656
|
+
& .m-backdrop-content {
|
|
627
657
|
height: auto;
|
|
658
|
+
}
|
|
659
|
+
& .m-backdrop-content {
|
|
628
660
|
min-height: 100vh;
|
|
661
|
+
}
|
|
662
|
+
& .m-backdrop-content {
|
|
629
663
|
-webkit-transition: all 0.45s;
|
|
630
664
|
transition: all 0.45s;
|
|
631
665
|
width: 100%;
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
@media (min-width: 768px) {
|
|
635
|
-
|
|
636
|
-
.m-drawer.--right .m-backdrop-content {
|
|
637
|
-
width: var(--maz-drawer-size)
|
|
638
|
-
}
|
|
666
|
+
@media (min-width: 768px) {
|
|
667
|
+
width: var(--maz-drawer-size);
|
|
639
668
|
}
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
669
|
+
}
|
|
670
|
+
&.backdrop-anim-enter-from > .m-backdrop-content,
|
|
671
|
+
&.backdrop-anim-leave-to > .m-backdrop-content {
|
|
643
672
|
opacity: 0;
|
|
644
673
|
-webkit-transform: translateX(100%);
|
|
645
674
|
transform: translateX(100%);
|
|
646
675
|
}
|
|
647
|
-
|
|
648
|
-
|
|
676
|
+
/* & .m-backdrop-content > .m-drawer-content-wrap {
|
|
677
|
+
@apply lap-s:maz-h-auto;
|
|
678
|
+
} */
|
|
679
|
+
}
|
|
680
|
+
&.--top {
|
|
649
681
|
-webkit-box-align: start;
|
|
650
682
|
-ms-flex-align: start;
|
|
651
683
|
align-items: flex-start;
|
|
652
684
|
}
|
|
653
|
-
|
|
654
|
-
|
|
685
|
+
&.--top {
|
|
686
|
+
& .m-backdrop-content {
|
|
655
687
|
-webkit-transition: all 0.45s;
|
|
656
688
|
transition: all 0.45s;
|
|
657
689
|
width: 100%;
|
|
658
690
|
height: 100vh;
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
@media (min-width: 768px) {
|
|
662
|
-
|
|
663
|
-
.m-drawer.--top .m-backdrop-content {
|
|
664
|
-
height: auto
|
|
665
|
-
}
|
|
691
|
+
@media (min-width: 768px) {
|
|
692
|
+
height: auto;
|
|
666
693
|
}
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
694
|
+
}
|
|
695
|
+
&.backdrop-anim-enter-from > .m-backdrop-content,
|
|
696
|
+
&.backdrop-anim-leave-to > .m-backdrop-content {
|
|
670
697
|
opacity: 0;
|
|
671
698
|
-webkit-transform: translateY(-100%);
|
|
672
699
|
transform: translateY(-100%);
|
|
673
700
|
}
|
|
674
|
-
|
|
675
|
-
|
|
701
|
+
}
|
|
702
|
+
& .m-backdrop-content > .m-drawer-content-wrap {
|
|
676
703
|
pointer-events: auto;
|
|
704
|
+
}
|
|
705
|
+
& .m-backdrop-content > .m-drawer-content-wrap {
|
|
677
706
|
display: -webkit-box;
|
|
678
707
|
display: -ms-flexbox;
|
|
679
708
|
display: flex;
|
|
709
|
+
}
|
|
710
|
+
& .m-backdrop-content > .m-drawer-content-wrap {
|
|
680
711
|
height: 100%;
|
|
712
|
+
}
|
|
713
|
+
& .m-backdrop-content > .m-drawer-content-wrap {
|
|
681
714
|
width: 100%;
|
|
715
|
+
}
|
|
716
|
+
& .m-backdrop-content > .m-drawer-content-wrap {
|
|
682
717
|
-webkit-box-orient: vertical;
|
|
683
718
|
-webkit-box-direction: normal;
|
|
684
719
|
-ms-flex-direction: column;
|
|
685
720
|
flex-direction: column;
|
|
721
|
+
}
|
|
722
|
+
& .m-backdrop-content > .m-drawer-content-wrap {
|
|
686
723
|
-webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .1);
|
|
687
724
|
box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .1);
|
|
688
725
|
}
|
|
726
|
+
}
|
|
689
727
|
|
|
690
728
|
*, ::before, ::after {
|
|
691
|
-
--tw-border-
|
|
692
|
-
|
|
729
|
+
--tw-border-spacing-x: 0;
|
|
730
|
+
--tw-border-spacing-y: 0;
|
|
731
|
+
--tw-translate-x: 0;
|
|
732
|
+
--tw-translate-y: 0;
|
|
733
|
+
--tw-rotate: 0;
|
|
734
|
+
--tw-skew-x: 0;
|
|
735
|
+
--tw-skew-y: 0;
|
|
736
|
+
--tw-scale-x: 1;
|
|
737
|
+
--tw-scale-y: 1;
|
|
738
|
+
--tw-pan-x: ;
|
|
739
|
+
--tw-pan-y: ;
|
|
740
|
+
--tw-pinch-zoom: ;
|
|
741
|
+
--tw-scroll-snap-strictness: proximity;
|
|
742
|
+
--tw-ordinal: ;
|
|
743
|
+
--tw-slashed-zero: ;
|
|
744
|
+
--tw-numeric-figure: ;
|
|
745
|
+
--tw-numeric-spacing: ;
|
|
746
|
+
--tw-numeric-fraction: ;
|
|
747
|
+
--tw-ring-inset: ;
|
|
748
|
+
--tw-ring-offset-width: 0px;
|
|
749
|
+
--tw-ring-offset-color: #fff;
|
|
750
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
751
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
752
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
753
|
+
--tw-shadow: 0 0 #0000;
|
|
754
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
755
|
+
--tw-blur: ;
|
|
756
|
+
--tw-brightness: ;
|
|
757
|
+
--tw-contrast: ;
|
|
758
|
+
--tw-grayscale: ;
|
|
759
|
+
--tw-hue-rotate: ;
|
|
760
|
+
--tw-invert: ;
|
|
761
|
+
--tw-saturate: ;
|
|
762
|
+
--tw-sepia: ;
|
|
763
|
+
--tw-drop-shadow: ;
|
|
764
|
+
--tw-backdrop-blur: ;
|
|
765
|
+
--tw-backdrop-brightness: ;
|
|
766
|
+
--tw-backdrop-contrast: ;
|
|
767
|
+
--tw-backdrop-grayscale: ;
|
|
768
|
+
--tw-backdrop-hue-rotate: ;
|
|
769
|
+
--tw-backdrop-invert: ;
|
|
770
|
+
--tw-backdrop-opacity: ;
|
|
771
|
+
--tw-backdrop-saturate: ;
|
|
772
|
+
--tw-backdrop-sepia: ;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
::-webkit-backdrop {
|
|
776
|
+
--tw-border-spacing-x: 0;
|
|
777
|
+
--tw-border-spacing-y: 0;
|
|
778
|
+
--tw-translate-x: 0;
|
|
779
|
+
--tw-translate-y: 0;
|
|
780
|
+
--tw-rotate: 0;
|
|
781
|
+
--tw-skew-x: 0;
|
|
782
|
+
--tw-skew-y: 0;
|
|
783
|
+
--tw-scale-x: 1;
|
|
784
|
+
--tw-scale-y: 1;
|
|
785
|
+
--tw-pan-x: ;
|
|
786
|
+
--tw-pan-y: ;
|
|
787
|
+
--tw-pinch-zoom: ;
|
|
788
|
+
--tw-scroll-snap-strictness: proximity;
|
|
789
|
+
--tw-ordinal: ;
|
|
790
|
+
--tw-slashed-zero: ;
|
|
791
|
+
--tw-numeric-figure: ;
|
|
792
|
+
--tw-numeric-spacing: ;
|
|
793
|
+
--tw-numeric-fraction: ;
|
|
794
|
+
--tw-ring-inset: ;
|
|
795
|
+
--tw-ring-offset-width: 0px;
|
|
796
|
+
--tw-ring-offset-color: #fff;
|
|
797
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
798
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
799
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
800
|
+
--tw-shadow: 0 0 #0000;
|
|
801
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
802
|
+
--tw-blur: ;
|
|
803
|
+
--tw-brightness: ;
|
|
804
|
+
--tw-contrast: ;
|
|
805
|
+
--tw-grayscale: ;
|
|
806
|
+
--tw-hue-rotate: ;
|
|
807
|
+
--tw-invert: ;
|
|
808
|
+
--tw-saturate: ;
|
|
809
|
+
--tw-sepia: ;
|
|
810
|
+
--tw-drop-shadow: ;
|
|
811
|
+
--tw-backdrop-blur: ;
|
|
812
|
+
--tw-backdrop-brightness: ;
|
|
813
|
+
--tw-backdrop-contrast: ;
|
|
814
|
+
--tw-backdrop-grayscale: ;
|
|
815
|
+
--tw-backdrop-hue-rotate: ;
|
|
816
|
+
--tw-backdrop-invert: ;
|
|
817
|
+
--tw-backdrop-opacity: ;
|
|
818
|
+
--tw-backdrop-saturate: ;
|
|
819
|
+
--tw-backdrop-sepia: ;
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
::backdrop {
|
|
823
|
+
--tw-border-spacing-x: 0;
|
|
824
|
+
--tw-border-spacing-y: 0;
|
|
825
|
+
--tw-translate-x: 0;
|
|
826
|
+
--tw-translate-y: 0;
|
|
827
|
+
--tw-rotate: 0;
|
|
828
|
+
--tw-skew-x: 0;
|
|
829
|
+
--tw-skew-y: 0;
|
|
830
|
+
--tw-scale-x: 1;
|
|
831
|
+
--tw-scale-y: 1;
|
|
832
|
+
--tw-pan-x: ;
|
|
833
|
+
--tw-pan-y: ;
|
|
834
|
+
--tw-pinch-zoom: ;
|
|
835
|
+
--tw-scroll-snap-strictness: proximity;
|
|
836
|
+
--tw-ordinal: ;
|
|
837
|
+
--tw-slashed-zero: ;
|
|
838
|
+
--tw-numeric-figure: ;
|
|
839
|
+
--tw-numeric-spacing: ;
|
|
840
|
+
--tw-numeric-fraction: ;
|
|
841
|
+
--tw-ring-inset: ;
|
|
842
|
+
--tw-ring-offset-width: 0px;
|
|
843
|
+
--tw-ring-offset-color: #fff;
|
|
844
|
+
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
845
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
846
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
847
|
+
--tw-shadow: 0 0 #0000;
|
|
848
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
849
|
+
--tw-blur: ;
|
|
850
|
+
--tw-brightness: ;
|
|
851
|
+
--tw-contrast: ;
|
|
852
|
+
--tw-grayscale: ;
|
|
853
|
+
--tw-hue-rotate: ;
|
|
854
|
+
--tw-invert: ;
|
|
855
|
+
--tw-saturate: ;
|
|
856
|
+
--tw-sepia: ;
|
|
857
|
+
--tw-drop-shadow: ;
|
|
858
|
+
--tw-backdrop-blur: ;
|
|
859
|
+
--tw-backdrop-brightness: ;
|
|
860
|
+
--tw-backdrop-contrast: ;
|
|
861
|
+
--tw-backdrop-grayscale: ;
|
|
862
|
+
--tw-backdrop-hue-rotate: ;
|
|
863
|
+
--tw-backdrop-invert: ;
|
|
864
|
+
--tw-backdrop-opacity: ;
|
|
865
|
+
--tw-backdrop-saturate: ;
|
|
866
|
+
--tw-backdrop-sepia: ;
|
|
693
867
|
}
|
|
694
868
|
|
|
695
869
|
:root {
|
|
@@ -739,81 +913,76 @@ html.--backdrop-present {
|
|
|
739
913
|
left: 0px;
|
|
740
914
|
}
|
|
741
915
|
|
|
742
|
-
.maz-top-
|
|
743
|
-
top:
|
|
916
|
+
.maz-top-4 {
|
|
917
|
+
top: 1rem;
|
|
744
918
|
}
|
|
745
919
|
|
|
746
|
-
.maz-top-
|
|
747
|
-
top:
|
|
920
|
+
.maz-top-0 {
|
|
921
|
+
top: 0px;
|
|
748
922
|
}
|
|
749
923
|
|
|
750
|
-
.maz-
|
|
751
|
-
|
|
924
|
+
.maz-left-0 {
|
|
925
|
+
left: 0px;
|
|
752
926
|
}
|
|
753
927
|
|
|
754
|
-
.maz-
|
|
755
|
-
|
|
928
|
+
.maz-left-4 {
|
|
929
|
+
left: 1rem;
|
|
756
930
|
}
|
|
757
931
|
|
|
758
|
-
.maz
|
|
759
|
-
top:
|
|
932
|
+
.maz-top-1 {
|
|
933
|
+
top: 0.25rem;
|
|
760
934
|
}
|
|
761
935
|
|
|
762
|
-
.maz-
|
|
763
|
-
|
|
936
|
+
.maz-left-1 {
|
|
937
|
+
left: 0.25rem;
|
|
764
938
|
}
|
|
765
939
|
|
|
766
940
|
.maz-bottom-0 {
|
|
767
941
|
bottom: 0px;
|
|
768
942
|
}
|
|
769
943
|
|
|
770
|
-
.maz-
|
|
771
|
-
|
|
772
|
-
}
|
|
773
|
-
|
|
774
|
-
.maz-left-1 {
|
|
775
|
-
left: 0.25rem;
|
|
944
|
+
.maz-right-0 {
|
|
945
|
+
right: 0px;
|
|
776
946
|
}
|
|
777
947
|
|
|
778
|
-
.maz-
|
|
779
|
-
|
|
948
|
+
.maz-top-1\/2 {
|
|
949
|
+
top: 50%;
|
|
780
950
|
}
|
|
781
951
|
|
|
782
|
-
.maz-
|
|
783
|
-
|
|
952
|
+
.maz--top-1\/2 {
|
|
953
|
+
top: -50%;
|
|
784
954
|
}
|
|
785
955
|
|
|
786
956
|
.maz-z-1 {
|
|
787
957
|
z-index: 1;
|
|
788
958
|
}
|
|
789
959
|
|
|
790
|
-
.maz-z-2 {
|
|
791
|
-
z-index: 2;
|
|
792
|
-
}
|
|
793
|
-
|
|
794
960
|
.maz-z-20 {
|
|
795
961
|
z-index: 20;
|
|
796
962
|
}
|
|
797
963
|
|
|
798
|
-
.maz-z-50 {
|
|
799
|
-
z-index: 50;
|
|
800
|
-
}
|
|
801
|
-
|
|
802
964
|
.maz-z-100 {
|
|
803
965
|
z-index: 100;
|
|
804
966
|
}
|
|
805
967
|
|
|
968
|
+
.maz-z-0 {
|
|
969
|
+
z-index: 0;
|
|
970
|
+
}
|
|
971
|
+
|
|
806
972
|
.maz-z-default-backdrop {
|
|
807
973
|
z-index: 1050;
|
|
808
974
|
}
|
|
809
975
|
|
|
810
|
-
.maz-
|
|
811
|
-
|
|
976
|
+
.maz-z-2 {
|
|
977
|
+
z-index: 2;
|
|
812
978
|
}
|
|
813
979
|
|
|
814
|
-
.maz-
|
|
815
|
-
|
|
816
|
-
|
|
980
|
+
.maz-z-50 {
|
|
981
|
+
z-index: 50;
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
.maz-m-0 {
|
|
985
|
+
margin: 0px;
|
|
817
986
|
}
|
|
818
987
|
|
|
819
988
|
.maz-my-0 {
|
|
@@ -826,6 +995,16 @@ html.--backdrop-present {
|
|
|
826
995
|
margin-bottom: 0.5rem;
|
|
827
996
|
}
|
|
828
997
|
|
|
998
|
+
.\!maz-my-0 {
|
|
999
|
+
margin-top: 0px !important;
|
|
1000
|
+
margin-bottom: 0px !important;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
.maz-mx-auto {
|
|
1004
|
+
margin-left: auto;
|
|
1005
|
+
margin-right: auto;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
829
1008
|
.maz-mt-2 {
|
|
830
1009
|
margin-top: 0.5rem;
|
|
831
1010
|
}
|
|
@@ -834,6 +1013,14 @@ html.--backdrop-present {
|
|
|
834
1013
|
margin-right: 0.5rem;
|
|
835
1014
|
}
|
|
836
1015
|
|
|
1016
|
+
.maz--ml-1 {
|
|
1017
|
+
margin-left: -0.25rem;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
.maz-ml-2 {
|
|
1021
|
+
margin-left: 0.5rem;
|
|
1022
|
+
}
|
|
1023
|
+
|
|
837
1024
|
.maz--mr-1 {
|
|
838
1025
|
margin-right: -0.25rem;
|
|
839
1026
|
}
|
|
@@ -850,14 +1037,6 @@ html.--backdrop-present {
|
|
|
850
1037
|
margin-left: 0.25rem;
|
|
851
1038
|
}
|
|
852
1039
|
|
|
853
|
-
.maz-ml-2 {
|
|
854
|
-
margin-left: 0.5rem;
|
|
855
|
-
}
|
|
856
|
-
|
|
857
|
-
.maz--ml-1 {
|
|
858
|
-
margin-left: -0.25rem;
|
|
859
|
-
}
|
|
860
|
-
|
|
861
1040
|
.maz-block {
|
|
862
1041
|
display: block;
|
|
863
1042
|
}
|
|
@@ -882,32 +1061,28 @@ html.--backdrop-present {
|
|
|
882
1061
|
display: none;
|
|
883
1062
|
}
|
|
884
1063
|
|
|
885
|
-
.maz-h-
|
|
886
|
-
height:
|
|
887
|
-
}
|
|
888
|
-
|
|
889
|
-
.maz-h-5 {
|
|
890
|
-
height: 1.25rem;
|
|
1064
|
+
.maz-h-12 {
|
|
1065
|
+
height: 3rem;
|
|
891
1066
|
}
|
|
892
1067
|
|
|
893
1068
|
.maz-h-6 {
|
|
894
1069
|
height: 1.5rem;
|
|
895
1070
|
}
|
|
896
1071
|
|
|
897
|
-
.maz-h-
|
|
898
|
-
height: 1.
|
|
1072
|
+
.maz-h-5 {
|
|
1073
|
+
height: 1.25rem;
|
|
899
1074
|
}
|
|
900
1075
|
|
|
901
|
-
.maz-h-
|
|
902
|
-
height:
|
|
1076
|
+
.maz-h-1\/2 {
|
|
1077
|
+
height: 50%;
|
|
903
1078
|
}
|
|
904
1079
|
|
|
905
|
-
.maz-h-
|
|
906
|
-
height:
|
|
1080
|
+
.maz-h-full {
|
|
1081
|
+
height: 100%;
|
|
907
1082
|
}
|
|
908
1083
|
|
|
909
|
-
.maz-h-
|
|
910
|
-
height:
|
|
1084
|
+
.maz-h-4 {
|
|
1085
|
+
height: 1rem;
|
|
911
1086
|
}
|
|
912
1087
|
|
|
913
1088
|
.maz-h-16 {
|
|
@@ -918,12 +1093,20 @@ html.--backdrop-present {
|
|
|
918
1093
|
height: auto;
|
|
919
1094
|
}
|
|
920
1095
|
|
|
921
|
-
.maz-h-
|
|
922
|
-
height:
|
|
1096
|
+
.maz-h-9 {
|
|
1097
|
+
height: 2.25rem;
|
|
923
1098
|
}
|
|
924
1099
|
|
|
925
|
-
.maz-h
|
|
926
|
-
height:
|
|
1100
|
+
.maz-h-\[70px\] {
|
|
1101
|
+
height: 70px;
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
.maz-h-7 {
|
|
1105
|
+
height: 1.75rem;
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
.maz-h-8 {
|
|
1109
|
+
height: 2rem;
|
|
927
1110
|
}
|
|
928
1111
|
|
|
929
1112
|
.maz-max-h-full {
|
|
@@ -934,52 +1117,56 @@ html.--backdrop-present {
|
|
|
934
1117
|
min-height: 0px;
|
|
935
1118
|
}
|
|
936
1119
|
|
|
937
|
-
.maz-w-
|
|
938
|
-
width:
|
|
1120
|
+
.maz-w-full {
|
|
1121
|
+
width: 100%;
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
.maz-w-12 {
|
|
1125
|
+
width: 3rem;
|
|
939
1126
|
}
|
|
940
1127
|
|
|
941
1128
|
.maz-w-5 {
|
|
942
1129
|
width: 1.25rem;
|
|
943
1130
|
}
|
|
944
1131
|
|
|
945
|
-
.maz-w-
|
|
946
|
-
width:
|
|
947
|
-
}
|
|
1132
|
+
.maz-w-0 {
|
|
1133
|
+
width: 0px;
|
|
1134
|
+
}
|
|
948
1135
|
|
|
949
|
-
.maz-w-
|
|
950
|
-
width:
|
|
1136
|
+
.maz-w-max {
|
|
1137
|
+
width: -webkit-max-content;
|
|
1138
|
+
width: -moz-max-content;
|
|
1139
|
+
width: max-content;
|
|
951
1140
|
}
|
|
952
1141
|
|
|
953
|
-
.maz-w-
|
|
954
|
-
width:
|
|
1142
|
+
.maz-w-min {
|
|
1143
|
+
width: -webkit-min-content;
|
|
1144
|
+
width: -moz-min-content;
|
|
1145
|
+
width: min-content;
|
|
955
1146
|
}
|
|
956
1147
|
|
|
957
1148
|
.maz-w-10 {
|
|
958
1149
|
width: 2.5rem;
|
|
959
1150
|
}
|
|
960
1151
|
|
|
961
|
-
.maz-w-
|
|
962
|
-
width:
|
|
1152
|
+
.maz-w-6 {
|
|
1153
|
+
width: 1.5rem;
|
|
963
1154
|
}
|
|
964
1155
|
|
|
965
1156
|
.maz-w-3\/5 {
|
|
966
1157
|
width: 60%;
|
|
967
1158
|
}
|
|
968
1159
|
|
|
969
|
-
.maz-w-
|
|
970
|
-
width:
|
|
1160
|
+
.maz-w-9 {
|
|
1161
|
+
width: 2.25rem;
|
|
971
1162
|
}
|
|
972
1163
|
|
|
973
|
-
.maz-w
|
|
974
|
-
width:
|
|
975
|
-
width: -moz-min-content;
|
|
976
|
-
width: min-content;
|
|
1164
|
+
.maz-w-\[70px\] {
|
|
1165
|
+
width: 70px;
|
|
977
1166
|
}
|
|
978
1167
|
|
|
979
|
-
.maz-w-
|
|
980
|
-
width:
|
|
981
|
-
width: -moz-max-content;
|
|
982
|
-
width: max-content;
|
|
1168
|
+
.maz-w-7 {
|
|
1169
|
+
width: 1.75rem;
|
|
983
1170
|
}
|
|
984
1171
|
|
|
985
1172
|
.maz-min-w-0 {
|
|
@@ -996,19 +1183,19 @@ html.--backdrop-present {
|
|
|
996
1183
|
max-width: min-content;
|
|
997
1184
|
}
|
|
998
1185
|
|
|
999
|
-
.maz-flex-1 {
|
|
1000
|
-
-webkit-box-flex: 1;
|
|
1001
|
-
-ms-flex: 1 1 0%;
|
|
1002
|
-
flex: 1 1 0%;
|
|
1003
|
-
}
|
|
1004
|
-
|
|
1005
1186
|
.maz-flex-none {
|
|
1006
1187
|
-webkit-box-flex: 0;
|
|
1007
1188
|
-ms-flex: none;
|
|
1008
1189
|
flex: none;
|
|
1009
1190
|
}
|
|
1010
1191
|
|
|
1011
|
-
.maz-flex-
|
|
1192
|
+
.maz-flex-1 {
|
|
1193
|
+
-webkit-box-flex: 1;
|
|
1194
|
+
-ms-flex: 1 1 0%;
|
|
1195
|
+
flex: 1 1 0%;
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
.maz-shrink-0 {
|
|
1012
1199
|
-ms-flex-negative: 0;
|
|
1013
1200
|
flex-shrink: 0;
|
|
1014
1201
|
}
|
|
@@ -1020,6 +1207,8 @@ html.--backdrop-present {
|
|
|
1020
1207
|
|
|
1021
1208
|
.maz-rotate-0 {
|
|
1022
1209
|
--tw-rotate: 0deg;
|
|
1210
|
+
-webkit-transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1211
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1023
1212
|
}
|
|
1024
1213
|
|
|
1025
1214
|
@-webkit-keyframes maz-spin {
|
|
@@ -1036,66 +1225,6 @@ html.--backdrop-present {
|
|
|
1036
1225
|
}
|
|
1037
1226
|
}
|
|
1038
1227
|
|
|
1039
|
-
@-webkit-keyframes maz-ping {
|
|
1040
|
-
75%, 100% {
|
|
1041
|
-
-webkit-transform: scale(2);
|
|
1042
|
-
transform: scale(2);
|
|
1043
|
-
opacity: 0;
|
|
1044
|
-
}
|
|
1045
|
-
}
|
|
1046
|
-
|
|
1047
|
-
@keyframes maz-ping {
|
|
1048
|
-
75%, 100% {
|
|
1049
|
-
-webkit-transform: scale(2);
|
|
1050
|
-
transform: scale(2);
|
|
1051
|
-
opacity: 0;
|
|
1052
|
-
}
|
|
1053
|
-
}
|
|
1054
|
-
|
|
1055
|
-
@-webkit-keyframes maz-pulse {
|
|
1056
|
-
50% {
|
|
1057
|
-
opacity: .5;
|
|
1058
|
-
}
|
|
1059
|
-
}
|
|
1060
|
-
|
|
1061
|
-
@keyframes maz-pulse {
|
|
1062
|
-
50% {
|
|
1063
|
-
opacity: .5;
|
|
1064
|
-
}
|
|
1065
|
-
}
|
|
1066
|
-
|
|
1067
|
-
@-webkit-keyframes maz-bounce {
|
|
1068
|
-
0%, 100% {
|
|
1069
|
-
-webkit-transform: translateY(-25%);
|
|
1070
|
-
transform: translateY(-25%);
|
|
1071
|
-
-webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
1072
|
-
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
1073
|
-
}
|
|
1074
|
-
|
|
1075
|
-
50% {
|
|
1076
|
-
-webkit-transform: none;
|
|
1077
|
-
transform: none;
|
|
1078
|
-
-webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1079
|
-
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1080
|
-
}
|
|
1081
|
-
}
|
|
1082
|
-
|
|
1083
|
-
@keyframes maz-bounce {
|
|
1084
|
-
0%, 100% {
|
|
1085
|
-
-webkit-transform: translateY(-25%);
|
|
1086
|
-
transform: translateY(-25%);
|
|
1087
|
-
-webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
1088
|
-
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
1089
|
-
}
|
|
1090
|
-
|
|
1091
|
-
50% {
|
|
1092
|
-
-webkit-transform: none;
|
|
1093
|
-
transform: none;
|
|
1094
|
-
-webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1095
|
-
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1096
|
-
}
|
|
1097
|
-
}
|
|
1098
|
-
|
|
1099
1228
|
.maz-animate-spin {
|
|
1100
1229
|
-webkit-animation: maz-spin 1s linear infinite;
|
|
1101
1230
|
animation: maz-spin 1s linear infinite;
|
|
@@ -1194,10 +1323,6 @@ html.--backdrop-present {
|
|
|
1194
1323
|
justify-content: space-between;
|
|
1195
1324
|
}
|
|
1196
1325
|
|
|
1197
|
-
.maz-gap-0 {
|
|
1198
|
-
gap: 0px;
|
|
1199
|
-
}
|
|
1200
|
-
|
|
1201
1326
|
.maz-gap-1 {
|
|
1202
1327
|
gap: 0.25rem;
|
|
1203
1328
|
}
|
|
@@ -1206,10 +1331,14 @@ html.--backdrop-present {
|
|
|
1206
1331
|
gap: 0.5rem;
|
|
1207
1332
|
}
|
|
1208
1333
|
|
|
1209
|
-
.maz-
|
|
1334
|
+
.maz-gap-0 {
|
|
1335
|
+
gap: 0px;
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1338
|
+
.maz-space-x-5 > :not([hidden]) ~ :not([hidden]) {
|
|
1210
1339
|
--tw-space-x-reverse: 0;
|
|
1211
|
-
margin-right: calc(
|
|
1212
|
-
margin-left: calc(
|
|
1340
|
+
margin-right: calc(1.25rem * var(--tw-space-x-reverse));
|
|
1341
|
+
margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1213
1342
|
}
|
|
1214
1343
|
|
|
1215
1344
|
.maz-space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
|
@@ -1218,10 +1347,10 @@ html.--backdrop-present {
|
|
|
1218
1347
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1219
1348
|
}
|
|
1220
1349
|
|
|
1221
|
-
.maz-space-x-
|
|
1350
|
+
.maz-space-x-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1222
1351
|
--tw-space-x-reverse: 0;
|
|
1223
|
-
margin-right: calc(
|
|
1224
|
-
margin-left: calc(
|
|
1352
|
+
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
|
|
1353
|
+
margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1225
1354
|
}
|
|
1226
1355
|
|
|
1227
1356
|
.maz-space-y-1 > :not([hidden]) ~ :not([hidden]) {
|
|
@@ -1271,24 +1400,24 @@ html.--backdrop-present {
|
|
|
1271
1400
|
white-space: nowrap;
|
|
1272
1401
|
}
|
|
1273
1402
|
|
|
1274
|
-
.maz-rounded-
|
|
1275
|
-
border-radius:
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
|
-
.maz-rounded {
|
|
1279
|
-
border-radius: 0.25rem;
|
|
1403
|
+
.maz-rounded-full {
|
|
1404
|
+
border-radius: 9999px;
|
|
1280
1405
|
}
|
|
1281
1406
|
|
|
1282
1407
|
.maz-rounded-lg {
|
|
1283
1408
|
border-radius: 0.5rem;
|
|
1284
1409
|
}
|
|
1285
1410
|
|
|
1411
|
+
.maz-rounded {
|
|
1412
|
+
border-radius: 0.25rem;
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1286
1415
|
.maz-rounded-xl {
|
|
1287
1416
|
border-radius: 0.75rem;
|
|
1288
1417
|
}
|
|
1289
1418
|
|
|
1290
|
-
.maz-rounded-
|
|
1291
|
-
border-radius:
|
|
1419
|
+
.maz-rounded-none {
|
|
1420
|
+
border-radius: 0px;
|
|
1292
1421
|
}
|
|
1293
1422
|
|
|
1294
1423
|
.maz-rounded-t-xl {
|
|
@@ -1314,28 +1443,32 @@ html.--backdrop-present {
|
|
|
1314
1443
|
border-width: 2px;
|
|
1315
1444
|
}
|
|
1316
1445
|
|
|
1446
|
+
.maz-border-\[6px\] {
|
|
1447
|
+
border-width: 6px;
|
|
1448
|
+
}
|
|
1449
|
+
|
|
1450
|
+
.maz-border-b-2 {
|
|
1451
|
+
border-bottom-width: 2px;
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1317
1454
|
.maz-border-t-2 {
|
|
1318
1455
|
border-top-width: 2px;
|
|
1319
1456
|
}
|
|
1320
1457
|
|
|
1321
|
-
.maz-border-
|
|
1322
|
-
border-
|
|
1458
|
+
.maz-border-l-2 {
|
|
1459
|
+
border-left-width: 2px;
|
|
1323
1460
|
}
|
|
1324
1461
|
|
|
1325
1462
|
.maz-border-r {
|
|
1326
1463
|
border-right-width: 2px;
|
|
1327
1464
|
}
|
|
1328
1465
|
|
|
1329
|
-
.maz-border-b-2 {
|
|
1330
|
-
border-bottom-width: 2px;
|
|
1331
|
-
}
|
|
1332
|
-
|
|
1333
1466
|
.maz-border-b {
|
|
1334
1467
|
border-bottom-width: 2px;
|
|
1335
1468
|
}
|
|
1336
1469
|
|
|
1337
|
-
.maz-border-
|
|
1338
|
-
border-
|
|
1470
|
+
.maz-border-t {
|
|
1471
|
+
border-top-width: 2px;
|
|
1339
1472
|
}
|
|
1340
1473
|
|
|
1341
1474
|
.maz-border-l {
|
|
@@ -1354,211 +1487,206 @@ html.--backdrop-present {
|
|
|
1354
1487
|
border-style: none;
|
|
1355
1488
|
}
|
|
1356
1489
|
|
|
1357
|
-
.maz-border-
|
|
1358
|
-
border-color:
|
|
1490
|
+
.maz-border-primary {
|
|
1491
|
+
border-color: var(--maz-color-primary);
|
|
1359
1492
|
}
|
|
1360
1493
|
|
|
1361
|
-
.maz-border-
|
|
1362
|
-
border-color: var(--maz-color-
|
|
1494
|
+
.maz-border-primary-100 {
|
|
1495
|
+
border-color: var(--maz-color-primary-100);
|
|
1363
1496
|
}
|
|
1364
1497
|
|
|
1365
|
-
.maz-border-
|
|
1366
|
-
border-color: var(--maz-color-
|
|
1498
|
+
.maz-border-info {
|
|
1499
|
+
border-color: var(--maz-color-info);
|
|
1367
1500
|
}
|
|
1368
1501
|
|
|
1369
|
-
.maz-border-
|
|
1370
|
-
|
|
1371
|
-
border-color: rgba(243, 244, 246, var(--tw-border-opacity));
|
|
1502
|
+
.maz-border-info-100 {
|
|
1503
|
+
border-color: var(--maz-color-info-100);
|
|
1372
1504
|
}
|
|
1373
1505
|
|
|
1374
1506
|
.maz-border-gray-400 {
|
|
1375
1507
|
--tw-border-opacity: 1;
|
|
1376
|
-
border-color:
|
|
1508
|
+
border-color: rgb(156 163 175 / var(--tw-border-opacity));
|
|
1377
1509
|
}
|
|
1378
1510
|
|
|
1379
|
-
.maz-border-
|
|
1380
|
-
border-
|
|
1511
|
+
.maz-border-gray-100 {
|
|
1512
|
+
--tw-border-opacity: 1;
|
|
1513
|
+
border-color: rgb(243 244 246 / var(--tw-border-opacity));
|
|
1381
1514
|
}
|
|
1382
1515
|
|
|
1383
|
-
.maz-border-
|
|
1384
|
-
border-color: var(--maz-color-
|
|
1516
|
+
.maz-border-black {
|
|
1517
|
+
border-color: var(--maz-color-black);
|
|
1385
1518
|
}
|
|
1386
1519
|
|
|
1387
|
-
.maz-border-
|
|
1388
|
-
border-color: var(--maz-color-
|
|
1520
|
+
.maz-border-white {
|
|
1521
|
+
border-color: var(--maz-color-white);
|
|
1389
1522
|
}
|
|
1390
1523
|
|
|
1391
|
-
.maz-border-
|
|
1392
|
-
border-color: var(--maz-color-
|
|
1524
|
+
.maz-border-secondary {
|
|
1525
|
+
border-color: var(--maz-color-secondary);
|
|
1393
1526
|
}
|
|
1394
1527
|
|
|
1395
1528
|
.maz-border-secondary-100 {
|
|
1396
1529
|
border-color: var(--maz-color-secondary-100);
|
|
1397
1530
|
}
|
|
1398
1531
|
|
|
1399
|
-
.maz-border-
|
|
1400
|
-
border-color: var(--maz-color-
|
|
1532
|
+
.maz-border-danger {
|
|
1533
|
+
border-color: var(--maz-color-danger);
|
|
1401
1534
|
}
|
|
1402
1535
|
|
|
1403
|
-
.maz-border-
|
|
1404
|
-
border-color: var(--maz-color-
|
|
1536
|
+
.maz-border-danger-100 {
|
|
1537
|
+
border-color: var(--maz-color-danger-100);
|
|
1405
1538
|
}
|
|
1406
1539
|
|
|
1407
|
-
.maz-border-
|
|
1408
|
-
border-color: var(--maz-color-
|
|
1540
|
+
.maz-border-warning {
|
|
1541
|
+
border-color: var(--maz-color-warning);
|
|
1409
1542
|
}
|
|
1410
1543
|
|
|
1411
|
-
.maz-border-
|
|
1412
|
-
border-color: var(--maz-color-
|
|
1544
|
+
.maz-border-warning-100 {
|
|
1545
|
+
border-color: var(--maz-color-warning-100);
|
|
1413
1546
|
}
|
|
1414
1547
|
|
|
1415
1548
|
.maz-border-success {
|
|
1416
1549
|
border-color: var(--maz-color-success);
|
|
1417
1550
|
}
|
|
1418
1551
|
|
|
1419
|
-
.maz-border-
|
|
1420
|
-
border-color: var(--maz-color-
|
|
1552
|
+
.maz-border-success-100 {
|
|
1553
|
+
border-color: var(--maz-color-success-100);
|
|
1421
1554
|
}
|
|
1422
1555
|
|
|
1423
|
-
.maz-border-
|
|
1424
|
-
border-color:
|
|
1556
|
+
.maz-border-transparent {
|
|
1557
|
+
border-color: transparent;
|
|
1425
1558
|
}
|
|
1426
1559
|
|
|
1427
|
-
.maz-border-
|
|
1428
|
-
border-color: var(--maz-color-
|
|
1560
|
+
.maz-border-color-lighter {
|
|
1561
|
+
border-color: var(--maz-color-bg-lighter);
|
|
1429
1562
|
}
|
|
1430
1563
|
|
|
1431
|
-
.maz-border-
|
|
1432
|
-
border-color: var(--maz-color-
|
|
1564
|
+
.maz-border-color-light {
|
|
1565
|
+
border-color: var(--maz-color-bg-light);
|
|
1433
1566
|
}
|
|
1434
1567
|
|
|
1435
1568
|
.maz-bg-transparent {
|
|
1436
1569
|
background-color: transparent;
|
|
1437
1570
|
}
|
|
1438
1571
|
|
|
1439
|
-
.maz-bg-
|
|
1440
|
-
background-color: var(--maz-color-
|
|
1572
|
+
.maz-bg-primary {
|
|
1573
|
+
background-color: var(--maz-color-primary);
|
|
1441
1574
|
}
|
|
1442
1575
|
|
|
1443
|
-
.maz-bg-
|
|
1444
|
-
background-color: var(--maz-color-
|
|
1576
|
+
.maz-bg-primary-100 {
|
|
1577
|
+
background-color: var(--maz-color-primary-100);
|
|
1445
1578
|
}
|
|
1446
1579
|
|
|
1447
|
-
.maz-bg-
|
|
1448
|
-
--
|
|
1449
|
-
background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
|
|
1580
|
+
.maz-bg-info {
|
|
1581
|
+
background-color: var(--maz-color-info);
|
|
1450
1582
|
}
|
|
1451
1583
|
|
|
1452
|
-
.maz-bg-
|
|
1453
|
-
--
|
|
1454
|
-
background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
|
|
1584
|
+
.maz-bg-info-100 {
|
|
1585
|
+
background-color: var(--maz-color-info-100);
|
|
1455
1586
|
}
|
|
1456
1587
|
|
|
1457
1588
|
.maz-bg-gray-400 {
|
|
1458
1589
|
--tw-bg-opacity: 1;
|
|
1459
|
-
background-color:
|
|
1590
|
+
background-color: rgb(156 163 175 / var(--tw-bg-opacity));
|
|
1460
1591
|
}
|
|
1461
1592
|
|
|
1462
|
-
.maz-bg-gray-
|
|
1593
|
+
.maz-bg-gray-100 {
|
|
1463
1594
|
--tw-bg-opacity: 1;
|
|
1464
|
-
background-color:
|
|
1595
|
+
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
|
|
1465
1596
|
}
|
|
1466
1597
|
|
|
1467
|
-
.maz-bg-
|
|
1468
|
-
background-color: var(--maz-color-
|
|
1598
|
+
.maz-bg-black {
|
|
1599
|
+
background-color: var(--maz-color-black);
|
|
1469
1600
|
}
|
|
1470
1601
|
|
|
1471
|
-
.maz-bg-
|
|
1472
|
-
background-color: var(--maz-color-
|
|
1602
|
+
.maz-bg-white {
|
|
1603
|
+
background-color: var(--maz-color-white);
|
|
1473
1604
|
}
|
|
1474
1605
|
|
|
1475
|
-
.maz-bg-
|
|
1476
|
-
background-color: var(--maz-color-
|
|
1606
|
+
.maz-bg-secondary {
|
|
1607
|
+
background-color: var(--maz-color-secondary);
|
|
1477
1608
|
}
|
|
1478
1609
|
|
|
1479
|
-
.maz-bg-
|
|
1480
|
-
background-color: var(--maz-
|
|
1610
|
+
.maz-bg-secondary-100 {
|
|
1611
|
+
background-color: var(--maz-color-secondary-100);
|
|
1481
1612
|
}
|
|
1482
1613
|
|
|
1483
|
-
.maz-bg-
|
|
1484
|
-
background-color: var(--maz-
|
|
1614
|
+
.maz-bg-danger {
|
|
1615
|
+
background-color: var(--maz-color-danger);
|
|
1485
1616
|
}
|
|
1486
1617
|
|
|
1487
|
-
.maz-bg-
|
|
1488
|
-
background-color: var(--maz-color-
|
|
1618
|
+
.maz-bg-danger-100 {
|
|
1619
|
+
background-color: var(--maz-color-danger-100);
|
|
1489
1620
|
}
|
|
1490
1621
|
|
|
1491
|
-
.maz-bg-
|
|
1492
|
-
background-color: var(--maz-color-
|
|
1622
|
+
.maz-bg-warning {
|
|
1623
|
+
background-color: var(--maz-color-warning);
|
|
1493
1624
|
}
|
|
1494
1625
|
|
|
1495
|
-
.maz-bg-
|
|
1496
|
-
background-color: var(--maz-color-
|
|
1626
|
+
.maz-bg-warning-100 {
|
|
1627
|
+
background-color: var(--maz-color-warning-100);
|
|
1497
1628
|
}
|
|
1498
1629
|
|
|
1499
|
-
.maz-bg-
|
|
1500
|
-
background-color: var(--maz-color-
|
|
1630
|
+
.maz-bg-success {
|
|
1631
|
+
background-color: var(--maz-color-success);
|
|
1501
1632
|
}
|
|
1502
1633
|
|
|
1503
|
-
.maz-bg-
|
|
1504
|
-
background-color: var(--maz-color-
|
|
1634
|
+
.maz-bg-success-100 {
|
|
1635
|
+
background-color: var(--maz-color-success-100);
|
|
1505
1636
|
}
|
|
1506
1637
|
|
|
1507
|
-
.maz-bg-
|
|
1508
|
-
background-color: var(--maz-color-
|
|
1638
|
+
.maz-bg-color {
|
|
1639
|
+
background-color: var(--maz-color-bg);
|
|
1509
1640
|
}
|
|
1510
1641
|
|
|
1511
|
-
.maz-bg-
|
|
1512
|
-
background-color: var(--maz-color-
|
|
1642
|
+
.maz-bg-primary-50 {
|
|
1643
|
+
background-color: var(--maz-color-primary-50);
|
|
1513
1644
|
}
|
|
1514
1645
|
|
|
1515
|
-
.maz-bg-
|
|
1516
|
-
background-color: var(--maz-color-
|
|
1646
|
+
.maz-bg-secondary-50 {
|
|
1647
|
+
background-color: var(--maz-color-secondary-50);
|
|
1517
1648
|
}
|
|
1518
1649
|
|
|
1519
|
-
.maz-bg-info {
|
|
1520
|
-
background-color: var(--maz-color-info);
|
|
1650
|
+
.maz-bg-info-50 {
|
|
1651
|
+
background-color: var(--maz-color-info-50);
|
|
1521
1652
|
}
|
|
1522
1653
|
|
|
1523
1654
|
.maz-bg-success-50 {
|
|
1524
1655
|
background-color: var(--maz-color-success-50);
|
|
1525
1656
|
}
|
|
1526
1657
|
|
|
1527
|
-
.maz-bg-
|
|
1528
|
-
background-color: var(--maz-color-
|
|
1529
|
-
}
|
|
1530
|
-
|
|
1531
|
-
.maz-bg-success {
|
|
1532
|
-
background-color: var(--maz-color-success);
|
|
1658
|
+
.maz-bg-danger-50 {
|
|
1659
|
+
background-color: var(--maz-color-danger-50);
|
|
1533
1660
|
}
|
|
1534
1661
|
|
|
1535
1662
|
.maz-bg-warning-50 {
|
|
1536
1663
|
background-color: var(--maz-color-warning-50);
|
|
1537
1664
|
}
|
|
1538
1665
|
|
|
1539
|
-
.maz-bg-
|
|
1540
|
-
|
|
1666
|
+
.maz-bg-gray-200 {
|
|
1667
|
+
--tw-bg-opacity: 1;
|
|
1668
|
+
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
1541
1669
|
}
|
|
1542
1670
|
|
|
1543
|
-
.maz-bg-
|
|
1544
|
-
background-color: var(--maz-color-
|
|
1671
|
+
.maz-bg-color-lighter {
|
|
1672
|
+
background-color: var(--maz-color-bg-lighter);
|
|
1545
1673
|
}
|
|
1546
1674
|
|
|
1547
|
-
.maz-bg-
|
|
1548
|
-
background-color: var(--maz-
|
|
1675
|
+
.maz-bg-overlay {
|
|
1676
|
+
background-color: var(--maz-bg-overlay);
|
|
1549
1677
|
}
|
|
1550
1678
|
|
|
1551
|
-
.maz-bg-
|
|
1552
|
-
background-color: var(--maz-color-
|
|
1679
|
+
.maz-bg-color-light {
|
|
1680
|
+
background-color: var(--maz-color-bg-light);
|
|
1553
1681
|
}
|
|
1554
1682
|
|
|
1555
|
-
.maz-bg-
|
|
1556
|
-
background-color: var(--maz-color-
|
|
1683
|
+
.maz-bg-bg-light {
|
|
1684
|
+
background-color: var(--maz-bg-color-light);
|
|
1557
1685
|
}
|
|
1558
1686
|
|
|
1559
|
-
.
|
|
1687
|
+
.maz-bg-gray-800 {
|
|
1560
1688
|
--tw-bg-opacity: 1;
|
|
1561
|
-
background-color:
|
|
1689
|
+
background-color: rgb(31 41 55 / var(--tw-bg-opacity));
|
|
1562
1690
|
}
|
|
1563
1691
|
|
|
1564
1692
|
.maz-bg-clip-padding {
|
|
@@ -1569,44 +1697,39 @@ html.--backdrop-present {
|
|
|
1569
1697
|
fill: currentColor;
|
|
1570
1698
|
}
|
|
1571
1699
|
|
|
1572
|
-
.maz-p-
|
|
1573
|
-
padding:
|
|
1700
|
+
.maz-p-4 {
|
|
1701
|
+
padding: 1rem;
|
|
1574
1702
|
}
|
|
1575
1703
|
|
|
1576
|
-
.maz-p-
|
|
1577
|
-
padding: 0.
|
|
1704
|
+
.maz-p-3 {
|
|
1705
|
+
padding: 0.75rem;
|
|
1578
1706
|
}
|
|
1579
1707
|
|
|
1580
1708
|
.maz-p-2 {
|
|
1581
1709
|
padding: 0.5rem;
|
|
1582
1710
|
}
|
|
1583
1711
|
|
|
1584
|
-
.maz-p-
|
|
1585
|
-
padding:
|
|
1586
|
-
}
|
|
1587
|
-
|
|
1588
|
-
.maz-p-4 {
|
|
1589
|
-
padding: 1rem;
|
|
1712
|
+
.maz-p-0 {
|
|
1713
|
+
padding: 0px;
|
|
1590
1714
|
}
|
|
1591
1715
|
|
|
1592
|
-
.maz-
|
|
1593
|
-
padding
|
|
1594
|
-
padding-right: 0px;
|
|
1716
|
+
.maz-p-1 {
|
|
1717
|
+
padding: 0.25rem;
|
|
1595
1718
|
}
|
|
1596
1719
|
|
|
1597
|
-
.maz-
|
|
1598
|
-
padding-
|
|
1599
|
-
padding-
|
|
1720
|
+
.maz-py-6 {
|
|
1721
|
+
padding-top: 1.5rem;
|
|
1722
|
+
padding-bottom: 1.5rem;
|
|
1600
1723
|
}
|
|
1601
1724
|
|
|
1602
|
-
.maz-px-
|
|
1603
|
-
padding-left:
|
|
1604
|
-
padding-right:
|
|
1725
|
+
.maz-px-8 {
|
|
1726
|
+
padding-left: 2rem;
|
|
1727
|
+
padding-right: 2rem;
|
|
1605
1728
|
}
|
|
1606
1729
|
|
|
1607
|
-
.maz-px-
|
|
1608
|
-
padding-left:
|
|
1609
|
-
padding-right:
|
|
1730
|
+
.maz-px-6 {
|
|
1731
|
+
padding-left: 1.5rem;
|
|
1732
|
+
padding-right: 1.5rem;
|
|
1610
1733
|
}
|
|
1611
1734
|
|
|
1612
1735
|
.maz-px-4 {
|
|
@@ -1614,29 +1737,24 @@ html.--backdrop-present {
|
|
|
1614
1737
|
padding-right: 1rem;
|
|
1615
1738
|
}
|
|
1616
1739
|
|
|
1617
|
-
.maz-px-
|
|
1618
|
-
padding-left:
|
|
1619
|
-
padding-right:
|
|
1620
|
-
}
|
|
1621
|
-
|
|
1622
|
-
.maz-px-8 {
|
|
1623
|
-
padding-left: 2rem;
|
|
1624
|
-
padding-right: 2rem;
|
|
1740
|
+
.maz-px-3 {
|
|
1741
|
+
padding-left: 0.75rem;
|
|
1742
|
+
padding-right: 0.75rem;
|
|
1625
1743
|
}
|
|
1626
1744
|
|
|
1627
|
-
.maz-
|
|
1628
|
-
padding-
|
|
1629
|
-
padding-
|
|
1745
|
+
.maz-px-2 {
|
|
1746
|
+
padding-left: 0.5rem;
|
|
1747
|
+
padding-right: 0.5rem;
|
|
1630
1748
|
}
|
|
1631
1749
|
|
|
1632
|
-
.maz-
|
|
1633
|
-
padding-
|
|
1634
|
-
padding-
|
|
1750
|
+
.maz-px-1 {
|
|
1751
|
+
padding-left: 0.25rem;
|
|
1752
|
+
padding-right: 0.25rem;
|
|
1635
1753
|
}
|
|
1636
1754
|
|
|
1637
|
-
.maz-
|
|
1638
|
-
padding-
|
|
1639
|
-
padding-
|
|
1755
|
+
.maz-px-0 {
|
|
1756
|
+
padding-left: 0px;
|
|
1757
|
+
padding-right: 0px;
|
|
1640
1758
|
}
|
|
1641
1759
|
|
|
1642
1760
|
.maz-py-3 {
|
|
@@ -1649,30 +1767,28 @@ html.--backdrop-present {
|
|
|
1649
1767
|
padding-bottom: 1rem;
|
|
1650
1768
|
}
|
|
1651
1769
|
|
|
1652
|
-
.maz-py-6 {
|
|
1653
|
-
padding-top: 1.5rem;
|
|
1654
|
-
padding-bottom: 1.5rem;
|
|
1655
|
-
}
|
|
1656
|
-
|
|
1657
1770
|
.maz-py-8 {
|
|
1658
1771
|
padding-top: 2rem;
|
|
1659
1772
|
padding-bottom: 2rem;
|
|
1660
1773
|
}
|
|
1661
1774
|
|
|
1662
|
-
.maz-
|
|
1663
|
-
padding-top: 0.
|
|
1775
|
+
.maz-py-1 {
|
|
1776
|
+
padding-top: 0.25rem;
|
|
1777
|
+
padding-bottom: 0.25rem;
|
|
1664
1778
|
}
|
|
1665
1779
|
|
|
1666
|
-
.maz-
|
|
1667
|
-
padding-
|
|
1780
|
+
.maz-py-0 {
|
|
1781
|
+
padding-top: 0px;
|
|
1782
|
+
padding-bottom: 0px;
|
|
1668
1783
|
}
|
|
1669
1784
|
|
|
1670
|
-
.maz-
|
|
1671
|
-
padding-
|
|
1785
|
+
.maz-py-2 {
|
|
1786
|
+
padding-top: 0.5rem;
|
|
1787
|
+
padding-bottom: 0.5rem;
|
|
1672
1788
|
}
|
|
1673
1789
|
|
|
1674
|
-
.maz-
|
|
1675
|
-
padding-
|
|
1790
|
+
.maz-pt-2 {
|
|
1791
|
+
padding-top: 0.5rem;
|
|
1676
1792
|
}
|
|
1677
1793
|
|
|
1678
1794
|
.maz-pl-6 {
|
|
@@ -1683,6 +1799,18 @@ html.--backdrop-present {
|
|
|
1683
1799
|
padding-left: 2.75rem;
|
|
1684
1800
|
}
|
|
1685
1801
|
|
|
1802
|
+
.maz-pr-1 {
|
|
1803
|
+
padding-right: 0.25rem;
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
.maz-pl-2 {
|
|
1807
|
+
padding-left: 0.5rem;
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
.maz-pr-2 {
|
|
1811
|
+
padding-right: 0.5rem;
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1686
1814
|
.maz-text-left {
|
|
1687
1815
|
text-align: left;
|
|
1688
1816
|
}
|
|
@@ -1695,9 +1823,9 @@ html.--backdrop-present {
|
|
|
1695
1823
|
text-align: right;
|
|
1696
1824
|
}
|
|
1697
1825
|
|
|
1698
|
-
.maz-text-
|
|
1699
|
-
font-size:
|
|
1700
|
-
line-height:
|
|
1826
|
+
.maz-text-base {
|
|
1827
|
+
font-size: 1rem;
|
|
1828
|
+
line-height: 1.5rem;
|
|
1701
1829
|
}
|
|
1702
1830
|
|
|
1703
1831
|
.maz-text-sm {
|
|
@@ -1705,11 +1833,6 @@ html.--backdrop-present {
|
|
|
1705
1833
|
line-height: 1.25rem;
|
|
1706
1834
|
}
|
|
1707
1835
|
|
|
1708
|
-
.maz-text-base {
|
|
1709
|
-
font-size: 1rem;
|
|
1710
|
-
line-height: 1.5rem;
|
|
1711
|
-
}
|
|
1712
|
-
|
|
1713
1836
|
.maz-text-xl {
|
|
1714
1837
|
font-size: 1.25rem;
|
|
1715
1838
|
line-height: 1.75rem;
|
|
@@ -1720,6 +1843,11 @@ html.--backdrop-present {
|
|
|
1720
1843
|
line-height: 2rem;
|
|
1721
1844
|
}
|
|
1722
1845
|
|
|
1846
|
+
.maz-text-xs {
|
|
1847
|
+
font-size: 0.75rem;
|
|
1848
|
+
line-height: 1rem;
|
|
1849
|
+
}
|
|
1850
|
+
|
|
1723
1851
|
.maz-font-medium {
|
|
1724
1852
|
font-weight: 500;
|
|
1725
1853
|
}
|
|
@@ -1736,20 +1864,6 @@ html.--backdrop-present {
|
|
|
1736
1864
|
line-height: 2.5rem;
|
|
1737
1865
|
}
|
|
1738
1866
|
|
|
1739
|
-
.maz-text-white {
|
|
1740
|
-
color: var(--maz-color-white);
|
|
1741
|
-
}
|
|
1742
|
-
|
|
1743
|
-
.maz-text-gray-300 {
|
|
1744
|
-
--tw-text-opacity: 1;
|
|
1745
|
-
color: rgba(209, 213, 219, var(--tw-text-opacity));
|
|
1746
|
-
}
|
|
1747
|
-
|
|
1748
|
-
.maz-text-gray-700 {
|
|
1749
|
-
--tw-text-opacity: 1;
|
|
1750
|
-
color: rgba(55, 65, 81, var(--tw-text-opacity));
|
|
1751
|
-
}
|
|
1752
|
-
|
|
1753
1867
|
.maz-text-normal {
|
|
1754
1868
|
color: var(--maz-color-text);
|
|
1755
1869
|
}
|
|
@@ -1762,36 +1876,56 @@ html.--backdrop-present {
|
|
|
1762
1876
|
color: var(--maz-color-primary);
|
|
1763
1877
|
}
|
|
1764
1878
|
|
|
1765
|
-
.maz-text-
|
|
1766
|
-
color: var(--maz-color-
|
|
1879
|
+
.maz-text-white {
|
|
1880
|
+
color: var(--maz-color-white);
|
|
1767
1881
|
}
|
|
1768
1882
|
|
|
1769
|
-
.maz-text-
|
|
1770
|
-
color: var(--maz-color-
|
|
1883
|
+
.maz-text-danger-600 {
|
|
1884
|
+
color: var(--maz-color-danger-600);
|
|
1771
1885
|
}
|
|
1772
1886
|
|
|
1773
|
-
.maz-text-success-
|
|
1774
|
-
color: var(--maz-color-success-
|
|
1887
|
+
.maz-text-success-600 {
|
|
1888
|
+
color: var(--maz-color-success-600);
|
|
1775
1889
|
}
|
|
1776
1890
|
|
|
1777
1891
|
.maz-text-warning-600 {
|
|
1778
1892
|
color: var(--maz-color-warning-600);
|
|
1779
1893
|
}
|
|
1780
1894
|
|
|
1781
|
-
.maz-text-
|
|
1782
|
-
|
|
1895
|
+
.maz-text-gray-300 {
|
|
1896
|
+
--tw-text-opacity: 1;
|
|
1897
|
+
color: rgb(209 213 219 / var(--tw-text-opacity));
|
|
1783
1898
|
}
|
|
1784
1899
|
|
|
1785
|
-
.maz-text-
|
|
1786
|
-
|
|
1900
|
+
.maz-text-gray-700 {
|
|
1901
|
+
--tw-text-opacity: 1;
|
|
1902
|
+
color: rgb(55 65 81 / var(--tw-text-opacity));
|
|
1903
|
+
}
|
|
1904
|
+
|
|
1905
|
+
.maz-text-info-contrast {
|
|
1906
|
+
color: var(--maz-color-info-contrast);
|
|
1907
|
+
}
|
|
1908
|
+
|
|
1909
|
+
.maz-text-success-contrast {
|
|
1910
|
+
color: var(--maz-color-success-contrast);
|
|
1911
|
+
}
|
|
1912
|
+
|
|
1913
|
+
.maz-text-warning-contrast {
|
|
1914
|
+
color: var(--maz-color-warning-contrast);
|
|
1787
1915
|
}
|
|
1788
1916
|
|
|
1789
1917
|
.maz-text-danger-contrast {
|
|
1790
1918
|
color: var(--maz-color-danger-contrast);
|
|
1791
1919
|
}
|
|
1792
1920
|
|
|
1921
|
+
.maz-underline {
|
|
1922
|
+
-webkit-text-decoration-line: underline;
|
|
1923
|
+
text-decoration-line: underline;
|
|
1924
|
+
}
|
|
1925
|
+
|
|
1793
1926
|
.maz-no-underline {
|
|
1794
|
-
text-decoration: none;
|
|
1927
|
+
-webkit-text-decoration-line: none;
|
|
1928
|
+
text-decoration-line: none;
|
|
1795
1929
|
}
|
|
1796
1930
|
|
|
1797
1931
|
.maz-opacity-0 {
|
|
@@ -1802,29 +1936,25 @@ html.--backdrop-present {
|
|
|
1802
1936
|
opacity: 1;
|
|
1803
1937
|
}
|
|
1804
1938
|
|
|
1805
|
-
|
|
1806
|
-
--tw-shadow: 0 0
|
|
1939
|
+
.maz-shadow {
|
|
1940
|
+
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
1941
|
+
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
1942
|
+
-webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1943
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1807
1944
|
}
|
|
1808
1945
|
|
|
1809
|
-
.maz-
|
|
1810
|
-
|
|
1811
|
-
|
|
1946
|
+
.maz-shadow-none {
|
|
1947
|
+
--tw-shadow: 0 0 #0000;
|
|
1948
|
+
--tw-shadow-colored: 0 0 #0000;
|
|
1949
|
+
-webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1950
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1812
1951
|
}
|
|
1813
1952
|
|
|
1814
|
-
.
|
|
1953
|
+
.maz-outline-none {
|
|
1815
1954
|
outline: 2px solid transparent;
|
|
1816
1955
|
outline-offset: 2px;
|
|
1817
1956
|
}
|
|
1818
1957
|
|
|
1819
|
-
*, ::before, ::after {
|
|
1820
|
-
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
|
1821
|
-
--tw-ring-offset-width: 0px;
|
|
1822
|
-
--tw-ring-offset-color: #fff;
|
|
1823
|
-
--tw-ring-color: rgba(59, 130, 246, 0.5);
|
|
1824
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
|
1825
|
-
--tw-ring-shadow: 0 0 #0000;
|
|
1826
|
-
}
|
|
1827
|
-
|
|
1828
1958
|
.maz-transition-all {
|
|
1829
1959
|
-webkit-transition-property: all;
|
|
1830
1960
|
transition-property: all;
|
|
@@ -1835,10 +1965,10 @@ html.--backdrop-present {
|
|
|
1835
1965
|
}
|
|
1836
1966
|
|
|
1837
1967
|
.maz-transition {
|
|
1838
|
-
-webkit-transition-property: background-color, border-color,
|
|
1839
|
-
transition-property: background-color, border-color,
|
|
1840
|
-
transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1841
|
-
transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
|
|
1968
|
+
-webkit-transition-property: color, background-color, border-color, fill, stroke, opacity, -webkit-text-decoration-color, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
|
|
1969
|
+
transition-property: color, background-color, border-color, fill, stroke, opacity, -webkit-text-decoration-color, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
|
|
1970
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1971
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-box-shadow, -webkit-transform, -webkit-filter, -webkit-backdrop-filter;
|
|
1842
1972
|
-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1843
1973
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1844
1974
|
-webkit-transition-duration: 150ms;
|
|
@@ -1846,8 +1976,10 @@ html.--backdrop-present {
|
|
|
1846
1976
|
}
|
|
1847
1977
|
|
|
1848
1978
|
.maz-transition-colors {
|
|
1849
|
-
-webkit-transition-property: background-color, border-color,
|
|
1850
|
-
transition-property: background-color, border-color,
|
|
1979
|
+
-webkit-transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
|
|
1980
|
+
transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
|
|
1981
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
1982
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
|
|
1851
1983
|
-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1852
1984
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1853
1985
|
-webkit-transition-duration: 150ms;
|
|
@@ -1900,31 +2032,9 @@ html.--backdrop-present {
|
|
|
1900
2032
|
justify-content: center;
|
|
1901
2033
|
}
|
|
1902
2034
|
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
@media (min-width: 768px) {
|
|
1907
|
-
}
|
|
1908
|
-
|
|
1909
|
-
@media (min-width: 1024px) {
|
|
1910
|
-
}
|
|
1911
|
-
|
|
1912
|
-
@media (min-width: 1280px) {
|
|
1913
|
-
}
|
|
1914
|
-
|
|
1915
|
-
@media (min-width: 1536px) {
|
|
1916
|
-
}
|
|
1917
|
-
|
|
1918
|
-
@media (min-width: 320px) {
|
|
1919
|
-
}
|
|
1920
|
-
|
|
1921
|
-
@media (min-width: 425px) {
|
|
1922
|
-
}
|
|
1923
|
-
|
|
1924
|
-
@media (min-width: 576px) {
|
|
1925
|
-
}
|
|
1926
|
-
|
|
1927
|
-
@media (min-width: 640px) {
|
|
2035
|
+
.focus\:maz-outline-none:focus {
|
|
2036
|
+
outline: 2px solid transparent;
|
|
2037
|
+
outline-offset: 2px;
|
|
1928
2038
|
}
|
|
1929
2039
|
|
|
1930
2040
|
@media (min-width: 768px) {
|
|
@@ -1940,24 +2050,3 @@ html.--backdrop-present {
|
|
|
1940
2050
|
width: 20rem;
|
|
1941
2051
|
}
|
|
1942
2052
|
}
|
|
1943
|
-
|
|
1944
|
-
@media (min-width: 992px) {
|
|
1945
|
-
}
|
|
1946
|
-
|
|
1947
|
-
@media (min-width: 1024px) {
|
|
1948
|
-
}
|
|
1949
|
-
|
|
1950
|
-
@media (min-width: 1280px) {
|
|
1951
|
-
}
|
|
1952
|
-
|
|
1953
|
-
@media (min-width: 1366px) {
|
|
1954
|
-
}
|
|
1955
|
-
|
|
1956
|
-
@media (min-width: 1440px) {
|
|
1957
|
-
}
|
|
1958
|
-
|
|
1959
|
-
@media (min-width: 1680px) {
|
|
1960
|
-
}
|
|
1961
|
-
|
|
1962
|
-
@media (min-width: 1920px) {
|
|
1963
|
-
}
|