maz-ui 3.4.0 → 3.4.1
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/{MazBackDrop.d.ts → MazBackdrop.d.ts} +32 -51
- package/components/MazBackdrop.js +3 -0
- package/components/MazBottomSheet.d.ts +3 -10
- package/components/MazBottomSheet.js +2 -2
- package/components/MazDialog.d.ts +12 -1
- package/components/MazDialog.js +2 -2
- package/components/MazDialogPromise.js +2 -2
- package/components/MazDrawer.d.ts +6 -15
- package/components/MazDrawer.js +2 -2
- package/components/MazPhoneNumberInput.js +1 -1
- package/components/MazSelect.js +2 -2
- package/components/MazSlider.js +2 -2
- package/components/index.d.ts +3 -3
- package/components/index.js +3 -3
- package/css/main.css +40 -416
- package/modules/index.js +1 -1
- package/package.json +4 -4
- package/components/MazBackDrop.js +0 -1
package/css/main.css
CHANGED
|
@@ -422,372 +422,6 @@ html.dark {
|
|
|
422
422
|
transform: translate(100%, 0);
|
|
423
423
|
}
|
|
424
424
|
|
|
425
|
-
html.--backdrop-present {
|
|
426
|
-
overflow-y: hidden;
|
|
427
|
-
height: 100vh;
|
|
428
|
-
}
|
|
429
|
-
|
|
430
|
-
.m-backdrop.bottom-sheet-anim-enter-active,
|
|
431
|
-
.m-backdrop.bottom-sheet-anim-leave-active {
|
|
432
|
-
-webkit-transition: opacity ease-in-out 250ms;
|
|
433
|
-
transition: opacity ease-in-out 250ms;
|
|
434
|
-
}
|
|
435
|
-
|
|
436
|
-
.m-backdrop.bottom-sheet-anim-enter-active .m-backdrop-content, .m-backdrop.bottom-sheet-anim-leave-active .m-backdrop-content {
|
|
437
|
-
-webkit-transition: -webkit-transform ease-in-out 250ms;
|
|
438
|
-
transition: -webkit-transform ease-in-out 250ms;
|
|
439
|
-
transition: transform ease-in-out 250ms;
|
|
440
|
-
transition: transform ease-in-out 250ms, -webkit-transform ease-in-out 250ms;
|
|
441
|
-
-webkit-transform: translateY(0);
|
|
442
|
-
transform: translateY(0);
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
.m-backdrop.bottom-sheet-anim-enter-from,
|
|
446
|
-
.m-backdrop.bottom-sheet-anim-leave-to {
|
|
447
|
-
opacity: 0;
|
|
448
|
-
}
|
|
449
|
-
|
|
450
|
-
.m-backdrop.bottom-sheet-anim-enter-from .m-backdrop-content, .m-backdrop.bottom-sheet-anim-leave-to .m-backdrop-content {
|
|
451
|
-
-webkit-transform: translateY(100%);
|
|
452
|
-
transform: translateY(100%);
|
|
453
|
-
}
|
|
454
|
-
|
|
455
|
-
.m-backdrop.modal-anim-enter-active,
|
|
456
|
-
.m-backdrop.modal-anim-leave-active {
|
|
457
|
-
-webkit-transition: opacity ease-in-out 250ms;
|
|
458
|
-
transition: opacity ease-in-out 250ms;
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
.m-backdrop.modal-anim-enter-active .m-backdrop-content, .m-backdrop.modal-anim-leave-active .m-backdrop-content {
|
|
462
|
-
-webkit-transition: -webkit-transform ease-in-out 250ms;
|
|
463
|
-
transition: -webkit-transform ease-in-out 250ms;
|
|
464
|
-
transition: transform ease-in-out 250ms;
|
|
465
|
-
transition: transform ease-in-out 250ms, -webkit-transform ease-in-out 250ms;
|
|
466
|
-
-webkit-transform: translateY(0);
|
|
467
|
-
transform: translateY(0);
|
|
468
|
-
}
|
|
469
|
-
|
|
470
|
-
.m-backdrop.modal-anim-enter-from,
|
|
471
|
-
.m-backdrop.modal-anim-leave-to {
|
|
472
|
-
opacity: 0;
|
|
473
|
-
}
|
|
474
|
-
|
|
475
|
-
.m-backdrop.modal-anim-enter-from .m-backdrop-content, .m-backdrop.modal-anim-leave-to .m-backdrop-content {
|
|
476
|
-
-webkit-transform: translateY(-25px);
|
|
477
|
-
transform: translateY(-25px);
|
|
478
|
-
}
|
|
479
|
-
|
|
480
|
-
.m-backdrop.backdrop-anim-enter-active,
|
|
481
|
-
.m-backdrop.backdrop-anim-leave-active {
|
|
482
|
-
-webkit-transition: opacity ease-in-out 250ms;
|
|
483
|
-
transition: opacity ease-in-out 250ms;
|
|
484
|
-
}
|
|
485
|
-
|
|
486
|
-
.m-backdrop.backdrop-anim-enter-from,
|
|
487
|
-
.m-backdrop.backdrop-anim-leave-to {
|
|
488
|
-
opacity: 0;
|
|
489
|
-
}
|
|
490
|
-
|
|
491
|
-
.m-backdrop {
|
|
492
|
-
position: fixed;
|
|
493
|
-
top: 0px;
|
|
494
|
-
right: 0px;
|
|
495
|
-
bottom: 0px;
|
|
496
|
-
left: 0px;
|
|
497
|
-
display: -webkit-box;
|
|
498
|
-
display: -ms-flexbox;
|
|
499
|
-
display: flex;
|
|
500
|
-
opacity: 1;
|
|
501
|
-
-webkit-box-align: center;
|
|
502
|
-
-ms-flex-align: center;
|
|
503
|
-
align-items: center;
|
|
504
|
-
-webkit-box-pack: center;
|
|
505
|
-
-ms-flex-pack: center;
|
|
506
|
-
justify-content: center;
|
|
507
|
-
-webkit-backdrop-filter: blur(3px);
|
|
508
|
-
backdrop-filter: blur(3px);
|
|
509
|
-
z-index: 1050;
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
.m-backdrop-overlay {
|
|
513
|
-
-ms-touch-action: none;
|
|
514
|
-
touch-action: none
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
.m-backdrop-overlay {
|
|
518
|
-
position: absolute;
|
|
519
|
-
}
|
|
520
|
-
|
|
521
|
-
.m-backdrop-overlay {
|
|
522
|
-
top: 0px;
|
|
523
|
-
right: 0px;
|
|
524
|
-
bottom: 0px;
|
|
525
|
-
left: 0px;
|
|
526
|
-
}
|
|
527
|
-
|
|
528
|
-
.m-backdrop-overlay {
|
|
529
|
-
background-color: var(--maz-bg-overlay);
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
.m-backdrop-overlay:not(.--disabled) {
|
|
533
|
-
cursor: pointer;
|
|
534
|
-
}
|
|
535
|
-
|
|
536
|
-
.m-backdrop-content {
|
|
537
|
-
position: relative;
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
.m-backdrop-content {
|
|
541
|
-
z-index: 1;
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
.m-backdrop-content:focus {
|
|
545
|
-
outline: 2px solid transparent;
|
|
546
|
-
outline-offset: 2px;
|
|
547
|
-
}
|
|
548
|
-
|
|
549
|
-
.m-backdrop.--bottom-sheet .m-backdrop-content {
|
|
550
|
-
position: absolute;
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
.m-backdrop.--bottom-sheet .m-backdrop-content {
|
|
554
|
-
bottom: 0px;
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
.m-backdrop.--bottom-sheet .m-backdrop-content {
|
|
558
|
-
left: 0px;
|
|
559
|
-
}
|
|
560
|
-
|
|
561
|
-
.m-backdrop.--bottom-sheet .m-backdrop-content {
|
|
562
|
-
right: 0px;
|
|
563
|
-
}
|
|
564
|
-
|
|
565
|
-
.m-backdrop.--fullscreen {
|
|
566
|
-
-webkit-box-align: start;
|
|
567
|
-
-ms-flex-align: start;
|
|
568
|
-
align-items: flex-start;
|
|
569
|
-
}
|
|
570
|
-
|
|
571
|
-
@media (min-width: 576px) {
|
|
572
|
-
.m-backdrop.--fullscreen {
|
|
573
|
-
-webkit-box-align: center;
|
|
574
|
-
-ms-flex-align: center;
|
|
575
|
-
align-items: center;
|
|
576
|
-
}
|
|
577
|
-
}
|
|
578
|
-
|
|
579
|
-
.m-backdrop.--fullscreen.--center-top {
|
|
580
|
-
-webkit-box-align: start;
|
|
581
|
-
-ms-flex-align: start;
|
|
582
|
-
align-items: flex-start;
|
|
583
|
-
}
|
|
584
|
-
|
|
585
|
-
@media (min-width: 576px) {
|
|
586
|
-
.m-backdrop.--fullscreen.--center-top {
|
|
587
|
-
padding-top: 7rem;
|
|
588
|
-
}
|
|
589
|
-
}
|
|
590
|
-
|
|
591
|
-
.m-backdrop.--fullscreen .m-backdrop-content {
|
|
592
|
-
position: relative;
|
|
593
|
-
}
|
|
594
|
-
|
|
595
|
-
.m-backdrop.--fullscreen .m-backdrop-content {
|
|
596
|
-
width: 100%;
|
|
597
|
-
}
|
|
598
|
-
|
|
599
|
-
@media (min-width: 576px) {
|
|
600
|
-
.m-backdrop.--fullscreen .m-backdrop-content {
|
|
601
|
-
width: auto;
|
|
602
|
-
}
|
|
603
|
-
}
|
|
604
|
-
|
|
605
|
-
.m-drawer {
|
|
606
|
-
-webkit-box-align: stretch;
|
|
607
|
-
-ms-flex-align: stretch;
|
|
608
|
-
align-items: stretch;
|
|
609
|
-
-webkit-box-pack: end;
|
|
610
|
-
-ms-flex-pack: end;
|
|
611
|
-
justify-content: flex-end;
|
|
612
|
-
}
|
|
613
|
-
|
|
614
|
-
.m-drawer .m-drawer-content-wrap {
|
|
615
|
-
overflow-y: auto;
|
|
616
|
-
}
|
|
617
|
-
|
|
618
|
-
.m-drawer .m-drawer-content-wrap {
|
|
619
|
-
background-color: var(--maz-color-bg-light);
|
|
620
|
-
}
|
|
621
|
-
|
|
622
|
-
.m-drawer .m-drawer-content-wrap {
|
|
623
|
-
color: var(--maz-color-text);
|
|
624
|
-
}
|
|
625
|
-
|
|
626
|
-
.m-drawer .m-drawer-content-wrap > .m-drawer-header {
|
|
627
|
-
z-index: 1;
|
|
628
|
-
}
|
|
629
|
-
|
|
630
|
-
.m-drawer .m-drawer-content-wrap > .m-drawer-header {
|
|
631
|
-
display: -webkit-box;
|
|
632
|
-
display: -ms-flexbox;
|
|
633
|
-
display: flex;
|
|
634
|
-
}
|
|
635
|
-
|
|
636
|
-
.m-drawer .m-drawer-content-wrap > .m-drawer-header {
|
|
637
|
-
height: 4rem;
|
|
638
|
-
}
|
|
639
|
-
|
|
640
|
-
.m-drawer .m-drawer-content-wrap > .m-drawer-header {
|
|
641
|
-
-ms-flex-negative: 0;
|
|
642
|
-
flex-shrink: 0;
|
|
643
|
-
}
|
|
644
|
-
|
|
645
|
-
.m-drawer .m-drawer-content-wrap > .m-drawer-header {
|
|
646
|
-
-webkit-box-align: center;
|
|
647
|
-
-ms-flex-align: center;
|
|
648
|
-
align-items: center;
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
.m-drawer .m-drawer-content-wrap > .m-drawer-header {
|
|
652
|
-
background-color: var(--maz-color-bg);
|
|
653
|
-
}
|
|
654
|
-
|
|
655
|
-
.m-drawer .m-drawer-content-wrap > .m-drawer-header {
|
|
656
|
-
background-clip: padding-box;
|
|
657
|
-
}
|
|
658
|
-
|
|
659
|
-
.m-drawer .m-drawer-content-wrap > .m-drawer-header {
|
|
660
|
-
padding-left: 1rem;
|
|
661
|
-
padding-right: 1rem;
|
|
662
|
-
}
|
|
663
|
-
|
|
664
|
-
.m-drawer .m-drawer-content-wrap > .m-drawer-header {
|
|
665
|
-
padding-top: 0.75rem;
|
|
666
|
-
padding-bottom: 0.75rem;
|
|
667
|
-
}
|
|
668
|
-
|
|
669
|
-
.m-drawer .m-drawer-content-wrap > .m-drawer-header {
|
|
670
|
-
-webkit-box-shadow: 0 5px 10px 0 hsla(0, 0%, 0%, 0.05);
|
|
671
|
-
box-shadow: 0 5px 10px 0 hsla(0, 0%, 0%, 0.05);
|
|
672
|
-
}
|
|
673
|
-
|
|
674
|
-
.m-drawer .m-drawer-content-wrap > .m-drawer-body {
|
|
675
|
-
z-index: 0;
|
|
676
|
-
}
|
|
677
|
-
|
|
678
|
-
.m-drawer .m-drawer-content-wrap > .m-drawer-body {
|
|
679
|
-
min-height: 0px;
|
|
680
|
-
}
|
|
681
|
-
|
|
682
|
-
.m-drawer .m-drawer-content-wrap > .m-drawer-body {
|
|
683
|
-
-webkit-box-flex: 1;
|
|
684
|
-
-ms-flex: 1 1 0%;
|
|
685
|
-
flex: 1 1 0%;
|
|
686
|
-
}
|
|
687
|
-
|
|
688
|
-
.m-drawer .m-drawer-content-wrap > .m-drawer-body {
|
|
689
|
-
overflow-x: auto;
|
|
690
|
-
}
|
|
691
|
-
|
|
692
|
-
.m-drawer .m-drawer-content-wrap > .m-drawer-body {
|
|
693
|
-
background-color: var(--maz-color-bg-light);
|
|
694
|
-
}
|
|
695
|
-
|
|
696
|
-
.m-drawer .m-drawer-content-wrap > .m-drawer-body {
|
|
697
|
-
background-clip: padding-box;
|
|
698
|
-
}
|
|
699
|
-
|
|
700
|
-
.m-drawer.--right {
|
|
701
|
-
/* & .m-backdrop-content > .m-drawer-content-wrap {
|
|
702
|
-
@apply lap-s:maz-h-auto;
|
|
703
|
-
} */
|
|
704
|
-
}
|
|
705
|
-
|
|
706
|
-
.m-drawer.--right .m-backdrop-content {
|
|
707
|
-
height: auto;
|
|
708
|
-
}
|
|
709
|
-
|
|
710
|
-
.m-drawer.--right .m-backdrop-content {
|
|
711
|
-
min-height: 100vh;
|
|
712
|
-
}
|
|
713
|
-
|
|
714
|
-
.m-drawer.--right .m-backdrop-content {
|
|
715
|
-
-webkit-transition: all 0.45s;
|
|
716
|
-
transition: all 0.45s;
|
|
717
|
-
width: 100%;
|
|
718
|
-
}
|
|
719
|
-
|
|
720
|
-
@media (min-width: 768px) {
|
|
721
|
-
|
|
722
|
-
.m-drawer.--right .m-backdrop-content {
|
|
723
|
-
width: var(--maz-drawer-size)
|
|
724
|
-
}
|
|
725
|
-
}
|
|
726
|
-
|
|
727
|
-
.m-drawer.--right.backdrop-anim-enter-from > .m-backdrop-content,
|
|
728
|
-
.m-drawer.--right.backdrop-anim-leave-to > .m-backdrop-content {
|
|
729
|
-
opacity: 0;
|
|
730
|
-
-webkit-transform: translateX(100%);
|
|
731
|
-
transform: translateX(100%);
|
|
732
|
-
}
|
|
733
|
-
|
|
734
|
-
.m-drawer.--top {
|
|
735
|
-
-webkit-box-align: start;
|
|
736
|
-
-ms-flex-align: start;
|
|
737
|
-
align-items: flex-start;
|
|
738
|
-
}
|
|
739
|
-
|
|
740
|
-
.m-drawer.--top .m-backdrop-content {
|
|
741
|
-
-webkit-transition: all 0.45s;
|
|
742
|
-
transition: all 0.45s;
|
|
743
|
-
width: 100%;
|
|
744
|
-
height: 100vh;
|
|
745
|
-
}
|
|
746
|
-
|
|
747
|
-
@media (min-width: 768px) {
|
|
748
|
-
|
|
749
|
-
.m-drawer.--top .m-backdrop-content {
|
|
750
|
-
height: auto
|
|
751
|
-
}
|
|
752
|
-
}
|
|
753
|
-
|
|
754
|
-
.m-drawer.--top.backdrop-anim-enter-from > .m-backdrop-content,
|
|
755
|
-
.m-drawer.--top.backdrop-anim-leave-to > .m-backdrop-content {
|
|
756
|
-
opacity: 0;
|
|
757
|
-
-webkit-transform: translateY(-100%);
|
|
758
|
-
transform: translateY(-100%);
|
|
759
|
-
}
|
|
760
|
-
|
|
761
|
-
.m-drawer .m-backdrop-content > .m-drawer-content-wrap {
|
|
762
|
-
pointer-events: auto;
|
|
763
|
-
}
|
|
764
|
-
|
|
765
|
-
.m-drawer .m-backdrop-content > .m-drawer-content-wrap {
|
|
766
|
-
display: -webkit-box;
|
|
767
|
-
display: -ms-flexbox;
|
|
768
|
-
display: flex;
|
|
769
|
-
}
|
|
770
|
-
|
|
771
|
-
.m-drawer .m-backdrop-content > .m-drawer-content-wrap {
|
|
772
|
-
height: 100%;
|
|
773
|
-
}
|
|
774
|
-
|
|
775
|
-
.m-drawer .m-backdrop-content > .m-drawer-content-wrap {
|
|
776
|
-
width: 100%;
|
|
777
|
-
}
|
|
778
|
-
|
|
779
|
-
.m-drawer .m-backdrop-content > .m-drawer-content-wrap {
|
|
780
|
-
-webkit-box-orient: vertical;
|
|
781
|
-
-webkit-box-direction: normal;
|
|
782
|
-
-ms-flex-direction: column;
|
|
783
|
-
flex-direction: column;
|
|
784
|
-
}
|
|
785
|
-
|
|
786
|
-
.m-drawer .m-backdrop-content > .m-drawer-content-wrap {
|
|
787
|
-
-webkit-box-shadow: 0 5px 10px 0 hsla(0, 0%, 0%, 0.05);
|
|
788
|
-
box-shadow: 0 5px 10px 0 hsla(0, 0%, 0%, 0.05);
|
|
789
|
-
}
|
|
790
|
-
|
|
791
425
|
*, ::before, ::after {
|
|
792
426
|
--tw-border-spacing-x: 0;
|
|
793
427
|
--tw-border-spacing-y: 0;
|
|
@@ -976,6 +610,14 @@ html.--backdrop-present {
|
|
|
976
610
|
left: 0px;
|
|
977
611
|
}
|
|
978
612
|
|
|
613
|
+
.maz-bottom-0 {
|
|
614
|
+
bottom: 0px;
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
.maz-left-0 {
|
|
618
|
+
left: 0px;
|
|
619
|
+
}
|
|
620
|
+
|
|
979
621
|
.maz-top-4 {
|
|
980
622
|
top: 1rem;
|
|
981
623
|
}
|
|
@@ -984,10 +626,6 @@ html.--backdrop-present {
|
|
|
984
626
|
top: 0px;
|
|
985
627
|
}
|
|
986
628
|
|
|
987
|
-
.maz-left-0 {
|
|
988
|
-
left: 0px;
|
|
989
|
-
}
|
|
990
|
-
|
|
991
629
|
.maz-left-4 {
|
|
992
630
|
left: 1rem;
|
|
993
631
|
}
|
|
@@ -1000,10 +638,6 @@ html.--backdrop-present {
|
|
|
1000
638
|
left: 0.25rem;
|
|
1001
639
|
}
|
|
1002
640
|
|
|
1003
|
-
.maz-bottom-0 {
|
|
1004
|
-
bottom: 0px;
|
|
1005
|
-
}
|
|
1006
|
-
|
|
1007
641
|
.maz-top-3 {
|
|
1008
642
|
top: 0.75rem;
|
|
1009
643
|
}
|
|
@@ -1020,10 +654,18 @@ html.--backdrop-present {
|
|
|
1020
654
|
top: -50%;
|
|
1021
655
|
}
|
|
1022
656
|
|
|
657
|
+
.maz-z-default-backdrop {
|
|
658
|
+
z-index: 1050;
|
|
659
|
+
}
|
|
660
|
+
|
|
1023
661
|
.maz-z-1 {
|
|
1024
662
|
z-index: 1;
|
|
1025
663
|
}
|
|
1026
664
|
|
|
665
|
+
.maz-z-0 {
|
|
666
|
+
z-index: 0;
|
|
667
|
+
}
|
|
668
|
+
|
|
1027
669
|
.maz-z-20 {
|
|
1028
670
|
z-index: 20;
|
|
1029
671
|
}
|
|
@@ -1032,22 +674,10 @@ html.--backdrop-present {
|
|
|
1032
674
|
z-index: 100;
|
|
1033
675
|
}
|
|
1034
676
|
|
|
1035
|
-
.maz-z-0 {
|
|
1036
|
-
z-index: 0;
|
|
1037
|
-
}
|
|
1038
|
-
|
|
1039
|
-
.maz-z-default-backdrop {
|
|
1040
|
-
z-index: 1050;
|
|
1041
|
-
}
|
|
1042
|
-
|
|
1043
677
|
.maz-z-2 {
|
|
1044
678
|
z-index: 2;
|
|
1045
679
|
}
|
|
1046
680
|
|
|
1047
|
-
.maz-z-50 {
|
|
1048
|
-
z-index: 50;
|
|
1049
|
-
}
|
|
1050
|
-
|
|
1051
681
|
.maz-m-0 {
|
|
1052
682
|
margin: 0px;
|
|
1053
683
|
}
|
|
@@ -1132,6 +762,10 @@ html.--backdrop-present {
|
|
|
1132
762
|
display: none;
|
|
1133
763
|
}
|
|
1134
764
|
|
|
765
|
+
.maz-h-5 {
|
|
766
|
+
height: 1.25rem;
|
|
767
|
+
}
|
|
768
|
+
|
|
1135
769
|
.maz-h-12 {
|
|
1136
770
|
height: 3rem;
|
|
1137
771
|
}
|
|
@@ -1140,18 +774,22 @@ html.--backdrop-present {
|
|
|
1140
774
|
height: 1.5rem;
|
|
1141
775
|
}
|
|
1142
776
|
|
|
1143
|
-
.maz-h-
|
|
1144
|
-
height:
|
|
777
|
+
.maz-h-16 {
|
|
778
|
+
height: 4rem;
|
|
1145
779
|
}
|
|
1146
780
|
|
|
1147
|
-
.maz-h-
|
|
1148
|
-
height:
|
|
781
|
+
.maz-h-auto {
|
|
782
|
+
height: auto;
|
|
1149
783
|
}
|
|
1150
784
|
|
|
1151
785
|
.maz-h-full {
|
|
1152
786
|
height: 100%;
|
|
1153
787
|
}
|
|
1154
788
|
|
|
789
|
+
.maz-h-1\/2 {
|
|
790
|
+
height: 50%;
|
|
791
|
+
}
|
|
792
|
+
|
|
1155
793
|
.maz-h-4 {
|
|
1156
794
|
height: 1rem;
|
|
1157
795
|
}
|
|
@@ -1160,14 +798,6 @@ html.--backdrop-present {
|
|
|
1160
798
|
height: 2rem;
|
|
1161
799
|
}
|
|
1162
800
|
|
|
1163
|
-
.maz-h-16 {
|
|
1164
|
-
height: 4rem;
|
|
1165
|
-
}
|
|
1166
|
-
|
|
1167
|
-
.maz-h-auto {
|
|
1168
|
-
height: auto;
|
|
1169
|
-
}
|
|
1170
|
-
|
|
1171
801
|
.maz-h-9 {
|
|
1172
802
|
height: 2.25rem;
|
|
1173
803
|
}
|
|
@@ -1184,26 +814,26 @@ html.--backdrop-present {
|
|
|
1184
814
|
max-height: 100%;
|
|
1185
815
|
}
|
|
1186
816
|
|
|
1187
|
-
.maz-min-h-\[6\.25rem\] {
|
|
1188
|
-
min-height: 6.25rem;
|
|
1189
|
-
}
|
|
1190
|
-
|
|
1191
817
|
.maz-min-h-0 {
|
|
1192
818
|
min-height: 0px;
|
|
1193
819
|
}
|
|
1194
820
|
|
|
1195
|
-
.maz-
|
|
1196
|
-
|
|
821
|
+
.maz-min-h-\[6\.25rem\] {
|
|
822
|
+
min-height: 6.25rem;
|
|
1197
823
|
}
|
|
1198
824
|
|
|
1199
|
-
.maz-w-
|
|
1200
|
-
width:
|
|
825
|
+
.maz-w-full {
|
|
826
|
+
width: 100%;
|
|
1201
827
|
}
|
|
1202
828
|
|
|
1203
829
|
.maz-w-5 {
|
|
1204
830
|
width: 1.25rem;
|
|
1205
831
|
}
|
|
1206
832
|
|
|
833
|
+
.maz-w-12 {
|
|
834
|
+
width: 3rem;
|
|
835
|
+
}
|
|
836
|
+
|
|
1207
837
|
.maz-w-0 {
|
|
1208
838
|
width: 0px;
|
|
1209
839
|
}
|
|
@@ -1383,12 +1013,6 @@ html.--backdrop-present {
|
|
|
1383
1013
|
align-items: center;
|
|
1384
1014
|
}
|
|
1385
1015
|
|
|
1386
|
-
.maz-items-stretch {
|
|
1387
|
-
-webkit-box-align: stretch;
|
|
1388
|
-
-ms-flex-align: stretch;
|
|
1389
|
-
align-items: stretch;
|
|
1390
|
-
}
|
|
1391
|
-
|
|
1392
1016
|
.maz-justify-start {
|
|
1393
1017
|
-webkit-box-pack: start;
|
|
1394
1018
|
-ms-flex-pack: start;
|
|
@@ -1769,14 +1393,14 @@ html.--backdrop-present {
|
|
|
1769
1393
|
background-color: var(--maz-color-bg-lighter);
|
|
1770
1394
|
}
|
|
1771
1395
|
|
|
1772
|
-
.maz-bg-overlay {
|
|
1773
|
-
background-color: var(--maz-bg-overlay);
|
|
1774
|
-
}
|
|
1775
|
-
|
|
1776
1396
|
.maz-bg-color-light {
|
|
1777
1397
|
background-color: var(--maz-color-bg-light);
|
|
1778
1398
|
}
|
|
1779
1399
|
|
|
1400
|
+
.maz-bg-overlay {
|
|
1401
|
+
background-color: var(--maz-bg-overlay);
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1780
1404
|
.maz-bg-bg-light {
|
|
1781
1405
|
background-color: var(--maz-bg-color-light);
|
|
1782
1406
|
}
|