@pzh-ui/css 0.0.13 → 0.0.14
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/package.json +4 -3
- package/src/tailwind.css +488 -220
- package/src/tailwind.src.css +108 -4
package/src/tailwind.css
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@import '~react-datepicker/dist/react-datepicker.css';
|
|
2
|
+
|
|
1
3
|
/*
|
|
2
4
|
! tailwindcss v3.0.23 | MIT License | https://tailwindcss.com
|
|
3
5
|
*/
|
|
@@ -423,7 +425,7 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
423
425
|
display: none;
|
|
424
426
|
}
|
|
425
427
|
|
|
426
|
-
[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select
|
|
428
|
+
[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select{
|
|
427
429
|
-webkit-appearance: none;
|
|
428
430
|
-moz-appearance: none;
|
|
429
431
|
appearance: none;
|
|
@@ -440,7 +442,7 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
440
442
|
--tw-shadow: 0 0 #0000;
|
|
441
443
|
}
|
|
442
444
|
|
|
443
|
-
[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus
|
|
445
|
+
[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus{
|
|
444
446
|
outline: 2px solid transparent;
|
|
445
447
|
outline-offset: 2px;
|
|
446
448
|
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
|
@@ -453,35 +455,35 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
453
455
|
border-color: #3182ce;
|
|
454
456
|
}
|
|
455
457
|
|
|
456
|
-
input::-moz-placeholder, textarea::-moz-placeholder
|
|
458
|
+
input::-moz-placeholder, textarea::-moz-placeholder{
|
|
457
459
|
color: #a0aec0;
|
|
458
460
|
opacity: 1;
|
|
459
461
|
}
|
|
460
462
|
|
|
461
|
-
input:-ms-input-placeholder, textarea:-ms-input-placeholder
|
|
463
|
+
input:-ms-input-placeholder, textarea:-ms-input-placeholder{
|
|
462
464
|
color: #a0aec0;
|
|
463
465
|
opacity: 1;
|
|
464
466
|
}
|
|
465
467
|
|
|
466
|
-
input::placeholder,textarea::placeholder
|
|
468
|
+
input::placeholder,textarea::placeholder{
|
|
467
469
|
color: #a0aec0;
|
|
468
470
|
opacity: 1;
|
|
469
471
|
}
|
|
470
472
|
|
|
471
|
-
::-webkit-datetime-edit-fields-wrapper
|
|
473
|
+
::-webkit-datetime-edit-fields-wrapper{
|
|
472
474
|
padding: 0;
|
|
473
475
|
}
|
|
474
476
|
|
|
475
|
-
::-webkit-date-and-time-value
|
|
477
|
+
::-webkit-date-and-time-value{
|
|
476
478
|
min-height: 1.5em;
|
|
477
479
|
}
|
|
478
480
|
|
|
479
|
-
::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field
|
|
481
|
+
::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{
|
|
480
482
|
padding-top: 0;
|
|
481
483
|
padding-bottom: 0;
|
|
482
484
|
}
|
|
483
485
|
|
|
484
|
-
select
|
|
486
|
+
select{
|
|
485
487
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23a0aec0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
|
|
486
488
|
background-position: right 0.5rem center;
|
|
487
489
|
background-repeat: no-repeat;
|
|
@@ -491,7 +493,7 @@ select {
|
|
|
491
493
|
color-adjust: exact;
|
|
492
494
|
}
|
|
493
495
|
|
|
494
|
-
[multiple]
|
|
496
|
+
[multiple]{
|
|
495
497
|
background-image: initial;
|
|
496
498
|
background-position: initial;
|
|
497
499
|
background-repeat: unset;
|
|
@@ -501,7 +503,7 @@ select {
|
|
|
501
503
|
color-adjust: unset;
|
|
502
504
|
}
|
|
503
505
|
|
|
504
|
-
[type='checkbox'],[type='radio']
|
|
506
|
+
[type='checkbox'],[type='radio']{
|
|
505
507
|
-webkit-appearance: none;
|
|
506
508
|
-moz-appearance: none;
|
|
507
509
|
appearance: none;
|
|
@@ -525,15 +527,15 @@ select {
|
|
|
525
527
|
--tw-shadow: 0 0 #0000;
|
|
526
528
|
}
|
|
527
529
|
|
|
528
|
-
[type='checkbox']
|
|
530
|
+
[type='checkbox']{
|
|
529
531
|
border-radius: 0px;
|
|
530
532
|
}
|
|
531
533
|
|
|
532
|
-
[type='radio']
|
|
534
|
+
[type='radio']{
|
|
533
535
|
border-radius: 100%;
|
|
534
536
|
}
|
|
535
537
|
|
|
536
|
-
[type='checkbox']:focus,[type='radio']:focus
|
|
538
|
+
[type='checkbox']:focus,[type='radio']:focus{
|
|
537
539
|
outline: 2px solid transparent;
|
|
538
540
|
outline-offset: 2px;
|
|
539
541
|
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
|
@@ -545,7 +547,7 @@ select {
|
|
|
545
547
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
546
548
|
}
|
|
547
549
|
|
|
548
|
-
[type='checkbox']:checked,[type='radio']:checked
|
|
550
|
+
[type='checkbox']:checked,[type='radio']:checked{
|
|
549
551
|
border-color: transparent;
|
|
550
552
|
background-color: currentColor;
|
|
551
553
|
background-size: 100% 100%;
|
|
@@ -553,20 +555,20 @@ select {
|
|
|
553
555
|
background-repeat: no-repeat;
|
|
554
556
|
}
|
|
555
557
|
|
|
556
|
-
[type='checkbox']:checked
|
|
558
|
+
[type='checkbox']:checked{
|
|
557
559
|
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
|
|
558
560
|
}
|
|
559
561
|
|
|
560
|
-
[type='radio']:checked
|
|
562
|
+
[type='radio']:checked{
|
|
561
563
|
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
|
|
562
564
|
}
|
|
563
565
|
|
|
564
|
-
[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus
|
|
566
|
+
[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{
|
|
565
567
|
border-color: transparent;
|
|
566
568
|
background-color: currentColor;
|
|
567
569
|
}
|
|
568
570
|
|
|
569
|
-
[type='checkbox']:indeterminate
|
|
571
|
+
[type='checkbox']:indeterminate{
|
|
570
572
|
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
|
|
571
573
|
border-color: transparent;
|
|
572
574
|
background-color: currentColor;
|
|
@@ -575,12 +577,12 @@ select {
|
|
|
575
577
|
background-repeat: no-repeat;
|
|
576
578
|
}
|
|
577
579
|
|
|
578
|
-
[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus
|
|
580
|
+
[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{
|
|
579
581
|
border-color: transparent;
|
|
580
582
|
background-color: currentColor;
|
|
581
583
|
}
|
|
582
584
|
|
|
583
|
-
[type='file']
|
|
585
|
+
[type='file']{
|
|
584
586
|
background: unset;
|
|
585
587
|
border-color: inherit;
|
|
586
588
|
border-width: 0;
|
|
@@ -590,11 +592,11 @@ select {
|
|
|
590
592
|
line-height: inherit;
|
|
591
593
|
}
|
|
592
594
|
|
|
593
|
-
[type='file']:focus
|
|
595
|
+
[type='file']:focus{
|
|
594
596
|
outline: 1px auto -webkit-focus-ring-color;
|
|
595
597
|
}
|
|
596
598
|
|
|
597
|
-
*, ::before, ::after
|
|
599
|
+
*, ::before, ::after{
|
|
598
600
|
--tw-translate-x: 0;
|
|
599
601
|
--tw-translate-y: 0;
|
|
600
602
|
--tw-rotate: 0;
|
|
@@ -639,41 +641,41 @@ select {
|
|
|
639
641
|
--tw-backdrop-sepia: ;
|
|
640
642
|
}
|
|
641
643
|
|
|
642
|
-
.container
|
|
644
|
+
.container{
|
|
643
645
|
width: 100%;
|
|
644
646
|
}
|
|
645
647
|
|
|
646
|
-
@media (min-width: 640px)
|
|
647
|
-
.container
|
|
648
|
+
@media (min-width: 640px){
|
|
649
|
+
.container{
|
|
648
650
|
max-width: 640px;
|
|
649
651
|
}
|
|
650
652
|
}
|
|
651
653
|
|
|
652
|
-
@media (min-width: 768px)
|
|
653
|
-
.container
|
|
654
|
+
@media (min-width: 768px){
|
|
655
|
+
.container{
|
|
654
656
|
max-width: 768px;
|
|
655
657
|
}
|
|
656
658
|
}
|
|
657
659
|
|
|
658
|
-
@media (min-width: 1024px)
|
|
659
|
-
.container
|
|
660
|
+
@media (min-width: 1024px){
|
|
661
|
+
.container{
|
|
660
662
|
max-width: 1024px;
|
|
661
663
|
}
|
|
662
664
|
}
|
|
663
665
|
|
|
664
|
-
@media (min-width: 1280px)
|
|
665
|
-
.container
|
|
666
|
+
@media (min-width: 1280px){
|
|
667
|
+
.container{
|
|
666
668
|
max-width: 1280px;
|
|
667
669
|
}
|
|
668
670
|
}
|
|
669
671
|
|
|
670
|
-
@media (min-width: 1440px)
|
|
671
|
-
.container
|
|
672
|
+
@media (min-width: 1440px){
|
|
673
|
+
.container{
|
|
672
674
|
max-width: 1440px;
|
|
673
675
|
}
|
|
674
676
|
}
|
|
675
677
|
|
|
676
|
-
.sr-only
|
|
678
|
+
.sr-only{
|
|
677
679
|
position: absolute;
|
|
678
680
|
width: 1px;
|
|
679
681
|
height: 1px;
|
|
@@ -685,473 +687,550 @@ select {
|
|
|
685
687
|
border-width: 0;
|
|
686
688
|
}
|
|
687
689
|
|
|
688
|
-
.pointer-events-none
|
|
690
|
+
.pointer-events-none{
|
|
689
691
|
pointer-events: none;
|
|
690
692
|
}
|
|
691
693
|
|
|
692
|
-
.pointer-events-auto
|
|
694
|
+
.pointer-events-auto{
|
|
693
695
|
pointer-events: auto;
|
|
694
696
|
}
|
|
695
697
|
|
|
696
|
-
.fixed
|
|
698
|
+
.fixed{
|
|
697
699
|
position: fixed;
|
|
698
700
|
}
|
|
699
701
|
|
|
700
|
-
.absolute
|
|
702
|
+
.absolute{
|
|
701
703
|
position: absolute;
|
|
702
704
|
}
|
|
703
705
|
|
|
704
|
-
.relative
|
|
706
|
+
.relative{
|
|
705
707
|
position: relative;
|
|
706
708
|
}
|
|
707
709
|
|
|
708
|
-
.inset-0
|
|
710
|
+
.inset-0{
|
|
709
711
|
top: 0px;
|
|
710
712
|
right: 0px;
|
|
711
713
|
bottom: 0px;
|
|
712
714
|
left: 0px;
|
|
713
715
|
}
|
|
714
716
|
|
|
715
|
-
.inset-y-0
|
|
717
|
+
.inset-y-0{
|
|
716
718
|
top: 0px;
|
|
717
719
|
bottom: 0px;
|
|
718
720
|
}
|
|
719
721
|
|
|
720
|
-
.right-0
|
|
722
|
+
.right-0{
|
|
721
723
|
right: 0px;
|
|
722
724
|
}
|
|
723
725
|
|
|
724
|
-
.bottom-0
|
|
726
|
+
.bottom-0{
|
|
725
727
|
bottom: 0px;
|
|
726
728
|
}
|
|
727
729
|
|
|
728
|
-
.left-0
|
|
730
|
+
.left-0{
|
|
729
731
|
left: 0px;
|
|
730
732
|
}
|
|
731
733
|
|
|
732
|
-
.top-0
|
|
734
|
+
.top-0{
|
|
733
735
|
top: 0px;
|
|
734
736
|
}
|
|
735
737
|
|
|
736
|
-
|
|
738
|
+
.-left-\[9999px\]{
|
|
739
|
+
left: -9999px;
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
.top-\[9px\]{
|
|
743
|
+
top: 9px;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
.top-\[14px\]{
|
|
747
|
+
top: 14px;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
.right-\[14px\]{
|
|
751
|
+
right: 14px;
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
.z-10{
|
|
737
755
|
z-index: 10;
|
|
738
756
|
}
|
|
739
757
|
|
|
740
|
-
.z-50
|
|
758
|
+
.z-50{
|
|
741
759
|
z-index: 50;
|
|
742
760
|
}
|
|
743
761
|
|
|
744
|
-
.m-0
|
|
762
|
+
.m-0{
|
|
745
763
|
margin: 0px;
|
|
746
764
|
}
|
|
747
765
|
|
|
748
|
-
.mx-auto
|
|
766
|
+
.mx-auto{
|
|
749
767
|
margin-left: auto;
|
|
750
768
|
margin-right: auto;
|
|
751
769
|
}
|
|
752
770
|
|
|
753
|
-
.mr-2
|
|
771
|
+
.mr-2{
|
|
754
772
|
margin-right: 0.5rem;
|
|
755
773
|
}
|
|
756
774
|
|
|
757
|
-
.ml-2
|
|
775
|
+
.ml-2{
|
|
758
776
|
margin-left: 0.5rem;
|
|
759
777
|
}
|
|
760
778
|
|
|
761
|
-
|
|
779
|
+
.-mt-\[2px\]{
|
|
780
|
+
margin-top: -2px;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
.-mt-0\.5{
|
|
784
|
+
margin-top: -0.125rem;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.-mt-0{
|
|
788
|
+
margin-top: -0px;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
.mr-\[8px\]{
|
|
792
|
+
margin-right: 8px;
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
.ml-4{
|
|
762
796
|
margin-left: 1rem;
|
|
763
797
|
}
|
|
764
798
|
|
|
765
|
-
.-mt-8
|
|
799
|
+
.-mt-8{
|
|
766
800
|
margin-top: -2rem;
|
|
767
801
|
}
|
|
768
802
|
|
|
769
|
-
.-mr-8
|
|
803
|
+
.-mr-8{
|
|
770
804
|
margin-right: -2rem;
|
|
771
805
|
}
|
|
772
806
|
|
|
773
|
-
.ml-3
|
|
807
|
+
.ml-3{
|
|
774
808
|
margin-left: 0.75rem;
|
|
775
809
|
}
|
|
776
810
|
|
|
777
|
-
.
|
|
811
|
+
.mb-2{
|
|
812
|
+
margin-bottom: 0.5rem;
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
.ml-1{
|
|
816
|
+
margin-left: 0.25rem;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
.mt-\[9px\]{
|
|
820
|
+
margin-top: 9px;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
.block{
|
|
778
824
|
display: block;
|
|
779
825
|
}
|
|
780
826
|
|
|
781
|
-
.inline-block
|
|
827
|
+
.inline-block{
|
|
782
828
|
display: inline-block;
|
|
783
829
|
}
|
|
784
830
|
|
|
785
|
-
.flex
|
|
831
|
+
.flex{
|
|
786
832
|
display: flex;
|
|
787
833
|
}
|
|
788
834
|
|
|
789
|
-
.contents
|
|
835
|
+
.contents{
|
|
790
836
|
display: contents;
|
|
791
837
|
}
|
|
792
838
|
|
|
793
|
-
.hidden
|
|
839
|
+
.hidden{
|
|
794
840
|
display: none;
|
|
795
841
|
}
|
|
796
842
|
|
|
797
|
-
.h-6
|
|
843
|
+
.h-6{
|
|
798
844
|
height: 1.5rem;
|
|
799
845
|
}
|
|
800
846
|
|
|
801
|
-
.h
|
|
847
|
+
.h-\[48px\]{
|
|
848
|
+
height: 48px;
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
.h-\[36px\]{
|
|
852
|
+
height: 36px;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
.h-4{
|
|
802
856
|
height: 1rem;
|
|
803
857
|
}
|
|
804
858
|
|
|
805
|
-
.min-h-screen
|
|
859
|
+
.min-h-screen{
|
|
806
860
|
min-height: 100vh;
|
|
807
861
|
}
|
|
808
862
|
|
|
809
|
-
.
|
|
863
|
+
.min-h-\[48px\]{
|
|
864
|
+
min-height: 48px;
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
.w-6{
|
|
810
868
|
width: 1.5rem;
|
|
811
869
|
}
|
|
812
870
|
|
|
813
|
-
.w-full
|
|
871
|
+
.w-full{
|
|
814
872
|
width: 100%;
|
|
815
873
|
}
|
|
816
874
|
|
|
817
|
-
.w-4
|
|
875
|
+
.w-4{
|
|
818
876
|
width: 1rem;
|
|
819
877
|
}
|
|
820
878
|
|
|
821
|
-
.
|
|
879
|
+
.w-\[48px\]{
|
|
880
|
+
width: 48px;
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
.max-w-screen-xl{
|
|
822
884
|
max-width: 1280px;
|
|
823
885
|
}
|
|
824
886
|
|
|
825
|
-
.max-w-6xl
|
|
887
|
+
.max-w-6xl{
|
|
826
888
|
max-width: 72rem;
|
|
827
889
|
}
|
|
828
890
|
|
|
829
|
-
.translate-y-2
|
|
891
|
+
.translate-y-2{
|
|
830
892
|
--tw-translate-y: 0.5rem;
|
|
831
893
|
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));
|
|
832
894
|
}
|
|
833
895
|
|
|
834
|
-
.translate-y-4
|
|
896
|
+
.translate-y-4{
|
|
835
897
|
--tw-translate-y: 1rem;
|
|
836
898
|
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));
|
|
837
899
|
}
|
|
838
900
|
|
|
839
|
-
.translate-y-0
|
|
901
|
+
.translate-y-0{
|
|
840
902
|
--tw-translate-y: 0px;
|
|
841
903
|
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));
|
|
842
904
|
}
|
|
843
905
|
|
|
844
|
-
.transform
|
|
906
|
+
.transform{
|
|
845
907
|
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));
|
|
846
908
|
}
|
|
847
909
|
|
|
848
|
-
.cursor-pointer
|
|
910
|
+
.cursor-pointer{
|
|
849
911
|
cursor: pointer;
|
|
850
912
|
}
|
|
851
913
|
|
|
852
|
-
.
|
|
853
|
-
cursor: not-allowed;
|
|
854
|
-
}
|
|
855
|
-
|
|
856
|
-
.items-start {
|
|
914
|
+
.items-start{
|
|
857
915
|
align-items: flex-start;
|
|
858
916
|
}
|
|
859
917
|
|
|
860
|
-
.items-center
|
|
918
|
+
.items-center{
|
|
861
919
|
align-items: center;
|
|
862
920
|
}
|
|
863
921
|
|
|
864
|
-
.justify-center
|
|
922
|
+
.justify-center{
|
|
865
923
|
justify-content: center;
|
|
866
924
|
}
|
|
867
925
|
|
|
868
|
-
.overflow-hidden
|
|
926
|
+
.overflow-hidden{
|
|
869
927
|
overflow: hidden;
|
|
870
928
|
}
|
|
871
929
|
|
|
872
|
-
.overflow-y-auto
|
|
930
|
+
.overflow-y-auto{
|
|
873
931
|
overflow-y: auto;
|
|
874
932
|
}
|
|
875
933
|
|
|
876
|
-
.break-words
|
|
934
|
+
.break-words{
|
|
877
935
|
overflow-wrap: break-word;
|
|
878
936
|
}
|
|
879
937
|
|
|
880
|
-
.rounded
|
|
938
|
+
.rounded{
|
|
881
939
|
border-radius: 0.25rem;
|
|
882
940
|
}
|
|
883
941
|
|
|
884
|
-
.rounded-lg
|
|
942
|
+
.rounded-lg{
|
|
885
943
|
border-radius: 0.5rem;
|
|
886
944
|
}
|
|
887
945
|
|
|
888
|
-
.rounded-md
|
|
946
|
+
.rounded-md{
|
|
889
947
|
border-radius: 0.375rem;
|
|
890
948
|
}
|
|
891
949
|
|
|
892
|
-
.rounded-t-md
|
|
950
|
+
.rounded-t-md{
|
|
893
951
|
border-top-left-radius: 0.375rem;
|
|
894
952
|
border-top-right-radius: 0.375rem;
|
|
895
953
|
}
|
|
896
954
|
|
|
897
|
-
.border
|
|
955
|
+
.border{
|
|
898
956
|
border-width: 1px;
|
|
899
957
|
}
|
|
900
958
|
|
|
901
|
-
.border-pzh-blue-dark
|
|
959
|
+
.border-pzh-blue-dark{
|
|
902
960
|
--tw-border-opacity: 1;
|
|
903
961
|
border-color: rgb(22 17 59 / var(--tw-border-opacity));
|
|
904
962
|
}
|
|
905
963
|
|
|
906
|
-
.border-opacity-35
|
|
964
|
+
.border-opacity-35{
|
|
907
965
|
--tw-border-opacity: 0.35;
|
|
908
966
|
}
|
|
909
967
|
|
|
910
|
-
.
|
|
968
|
+
.border-opacity-10{
|
|
969
|
+
--tw-border-opacity: 0.1;
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
.bg-pzh-blue{
|
|
911
973
|
--tw-bg-opacity: 1;
|
|
912
974
|
background-color: rgb(40 31 107 / var(--tw-bg-opacity));
|
|
913
975
|
}
|
|
914
976
|
|
|
915
|
-
.bg-pzh-red
|
|
977
|
+
.bg-pzh-red{
|
|
916
978
|
--tw-bg-opacity: 1;
|
|
917
979
|
background-color: rgb(209 31 61 / var(--tw-bg-opacity));
|
|
918
980
|
}
|
|
919
981
|
|
|
920
|
-
.bg-pzh-yellow
|
|
982
|
+
.bg-pzh-yellow{
|
|
921
983
|
--tw-bg-opacity: 1;
|
|
922
984
|
background-color: rgb(239 204 54 / var(--tw-bg-opacity));
|
|
923
985
|
}
|
|
924
986
|
|
|
925
|
-
.bg-pzh-green
|
|
987
|
+
.bg-pzh-green{
|
|
926
988
|
--tw-bg-opacity: 1;
|
|
927
989
|
background-color: rgb(0 128 77 / var(--tw-bg-opacity));
|
|
928
990
|
}
|
|
929
991
|
|
|
930
|
-
.bg-pzh-gray
|
|
931
|
-
--tw-bg-opacity: 1;
|
|
932
|
-
background-color: rgb(235 235 235 / var(--tw-bg-opacity));
|
|
933
|
-
}
|
|
934
|
-
|
|
935
|
-
.bg-pzh-cool-gray-dark {
|
|
992
|
+
.bg-pzh-cool-gray-dark{
|
|
936
993
|
--tw-bg-opacity: 1;
|
|
937
994
|
background-color: rgb(92 92 92 / var(--tw-bg-opacity));
|
|
938
995
|
}
|
|
939
996
|
|
|
940
|
-
.bg-white
|
|
997
|
+
.bg-white{
|
|
941
998
|
--tw-bg-opacity: 1;
|
|
942
999
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
943
1000
|
}
|
|
944
1001
|
|
|
945
|
-
.bg-pzh-blue-light
|
|
1002
|
+
.bg-pzh-blue-light{
|
|
946
1003
|
--tw-bg-opacity: 1;
|
|
947
1004
|
background-color: rgb(123 173 222 / var(--tw-bg-opacity));
|
|
948
1005
|
}
|
|
949
1006
|
|
|
950
|
-
.bg-
|
|
1007
|
+
.bg-pzh-gray{
|
|
1008
|
+
--tw-bg-opacity: 1;
|
|
1009
|
+
background-color: rgb(235 235 235 / var(--tw-bg-opacity));
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
.bg-opacity-50{
|
|
951
1013
|
--tw-bg-opacity: 0.5;
|
|
952
1014
|
}
|
|
953
1015
|
|
|
954
|
-
.bg-opacity-20
|
|
1016
|
+
.bg-opacity-20{
|
|
955
1017
|
--tw-bg-opacity: 0.2;
|
|
956
1018
|
}
|
|
957
1019
|
|
|
958
|
-
.p-1
|
|
1020
|
+
.p-1{
|
|
959
1021
|
padding: 0.25rem;
|
|
960
1022
|
}
|
|
961
1023
|
|
|
962
|
-
.p-6
|
|
1024
|
+
.p-6{
|
|
963
1025
|
padding: 1.5rem;
|
|
964
1026
|
}
|
|
965
1027
|
|
|
966
|
-
.p-2
|
|
1028
|
+
.p-2{
|
|
967
1029
|
padding: 0.5rem;
|
|
968
1030
|
}
|
|
969
1031
|
|
|
970
|
-
.px-3
|
|
1032
|
+
.px-3{
|
|
971
1033
|
padding-left: 0.75rem;
|
|
972
1034
|
padding-right: 0.75rem;
|
|
973
1035
|
}
|
|
974
1036
|
|
|
975
|
-
.py-2
|
|
1037
|
+
.py-2{
|
|
976
1038
|
padding-top: 0.5rem;
|
|
977
1039
|
padding-bottom: 0.5rem;
|
|
978
1040
|
}
|
|
979
1041
|
|
|
980
|
-
.px-4
|
|
1042
|
+
.px-4{
|
|
981
1043
|
padding-left: 1rem;
|
|
982
1044
|
padding-right: 1rem;
|
|
983
1045
|
}
|
|
984
1046
|
|
|
985
|
-
.px-\[12px\]
|
|
1047
|
+
.px-\[12px\]{
|
|
986
1048
|
padding-left: 12px;
|
|
987
1049
|
padding-right: 12px;
|
|
988
1050
|
}
|
|
989
1051
|
|
|
990
|
-
.px-6
|
|
1052
|
+
.px-6{
|
|
991
1053
|
padding-left: 1.5rem;
|
|
992
1054
|
padding-right: 1.5rem;
|
|
993
1055
|
}
|
|
994
1056
|
|
|
995
|
-
.py-1
|
|
1057
|
+
.py-1{
|
|
996
1058
|
padding-top: 0.25rem;
|
|
997
1059
|
padding-bottom: 0.25rem;
|
|
998
1060
|
}
|
|
999
1061
|
|
|
1000
|
-
.pr-16
|
|
1062
|
+
.pr-16{
|
|
1001
1063
|
padding-right: 4rem;
|
|
1002
1064
|
}
|
|
1003
1065
|
|
|
1004
|
-
.pt-1
|
|
1066
|
+
.pt-1{
|
|
1005
1067
|
padding-top: 0.25rem;
|
|
1006
1068
|
}
|
|
1007
1069
|
|
|
1008
|
-
.pr-1
|
|
1070
|
+
.pr-1{
|
|
1009
1071
|
padding-right: 0.25rem;
|
|
1010
1072
|
}
|
|
1011
1073
|
|
|
1012
|
-
.pt-\[
|
|
1013
|
-
padding-top:
|
|
1074
|
+
.pt-\[15px\]{
|
|
1075
|
+
padding-top: 15px;
|
|
1014
1076
|
}
|
|
1015
1077
|
|
|
1016
|
-
.pb-\[12px\]
|
|
1078
|
+
.pb-\[12px\]{
|
|
1017
1079
|
padding-bottom: 12px;
|
|
1018
1080
|
}
|
|
1019
1081
|
|
|
1020
|
-
.pb-\[9px\]
|
|
1082
|
+
.pb-\[9px\]{
|
|
1021
1083
|
padding-bottom: 9px;
|
|
1022
1084
|
}
|
|
1023
1085
|
|
|
1024
|
-
.pt-\[12px\]
|
|
1086
|
+
.pt-\[12px\]{
|
|
1025
1087
|
padding-top: 12px;
|
|
1026
1088
|
}
|
|
1027
1089
|
|
|
1028
|
-
.pt-0
|
|
1090
|
+
.pt-0{
|
|
1029
1091
|
padding-top: 0px;
|
|
1030
1092
|
}
|
|
1031
1093
|
|
|
1032
|
-
.pt-2
|
|
1094
|
+
.pt-2{
|
|
1033
1095
|
padding-top: 0.5rem;
|
|
1034
1096
|
}
|
|
1035
1097
|
|
|
1036
|
-
.pb-3
|
|
1098
|
+
.pb-3{
|
|
1037
1099
|
padding-bottom: 0.75rem;
|
|
1038
1100
|
}
|
|
1039
1101
|
|
|
1040
|
-
.pt-4
|
|
1102
|
+
.pt-4{
|
|
1041
1103
|
padding-top: 1rem;
|
|
1042
1104
|
}
|
|
1043
1105
|
|
|
1044
|
-
.pb-4
|
|
1106
|
+
.pb-4{
|
|
1045
1107
|
padding-bottom: 1rem;
|
|
1046
1108
|
}
|
|
1047
1109
|
|
|
1048
|
-
.pt-8
|
|
1110
|
+
.pt-8{
|
|
1049
1111
|
padding-top: 2rem;
|
|
1050
1112
|
}
|
|
1051
1113
|
|
|
1052
|
-
.pr-8
|
|
1114
|
+
.pr-8{
|
|
1053
1115
|
padding-right: 2rem;
|
|
1054
1116
|
}
|
|
1055
1117
|
|
|
1056
|
-
.pb-0
|
|
1118
|
+
.pb-0{
|
|
1057
1119
|
padding-bottom: 0px;
|
|
1058
1120
|
}
|
|
1059
1121
|
|
|
1060
|
-
.pb-1\.5
|
|
1122
|
+
.pb-1\.5{
|
|
1061
1123
|
padding-bottom: 0.375rem;
|
|
1062
1124
|
}
|
|
1063
1125
|
|
|
1064
|
-
.pb-1
|
|
1126
|
+
.pb-1{
|
|
1065
1127
|
padding-bottom: 0.25rem;
|
|
1066
1128
|
}
|
|
1067
1129
|
|
|
1068
|
-
.
|
|
1069
|
-
padding-
|
|
1070
|
-
}
|
|
1071
|
-
|
|
1072
|
-
.pb-\[11px\] {
|
|
1073
|
-
padding-bottom: 11px;
|
|
1130
|
+
.pl-\[34px\]{
|
|
1131
|
+
padding-left: 34px;
|
|
1074
1132
|
}
|
|
1075
1133
|
|
|
1076
|
-
.text-left
|
|
1134
|
+
.text-left{
|
|
1077
1135
|
text-align: left;
|
|
1078
1136
|
}
|
|
1079
1137
|
|
|
1080
|
-
.text-center
|
|
1138
|
+
.text-center{
|
|
1081
1139
|
text-align: center;
|
|
1082
1140
|
}
|
|
1083
1141
|
|
|
1084
|
-
.align-bottom
|
|
1142
|
+
.align-bottom{
|
|
1085
1143
|
vertical-align: bottom;
|
|
1086
1144
|
}
|
|
1087
1145
|
|
|
1088
|
-
.text-sm
|
|
1146
|
+
.text-sm{
|
|
1089
1147
|
font-size: 0.875rem;
|
|
1090
1148
|
}
|
|
1091
1149
|
|
|
1092
|
-
.text-xs
|
|
1150
|
+
.text-xs{
|
|
1093
1151
|
font-size: 0.75rem;
|
|
1094
1152
|
}
|
|
1095
1153
|
|
|
1096
|
-
.text-base
|
|
1154
|
+
.text-base{
|
|
1097
1155
|
font-size: 1rem;
|
|
1098
1156
|
}
|
|
1099
1157
|
|
|
1100
|
-
.
|
|
1158
|
+
.text-\[0\.8rem\]{
|
|
1159
|
+
font-size: 0.8rem;
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
.leading-normal{
|
|
1101
1163
|
line-height: 1.5;
|
|
1102
1164
|
}
|
|
1103
1165
|
|
|
1104
|
-
.leading
|
|
1166
|
+
.leading-\[28px\]{
|
|
1167
|
+
line-height: 28px;
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
.leading-5{
|
|
1171
|
+
line-height: 1.25rem;
|
|
1172
|
+
}
|
|
1173
|
+
|
|
1174
|
+
.leading-none{
|
|
1105
1175
|
line-height: 1;
|
|
1106
1176
|
}
|
|
1107
1177
|
|
|
1108
|
-
.text-white
|
|
1178
|
+
.text-white{
|
|
1109
1179
|
--tw-text-opacity: 1;
|
|
1110
1180
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1111
1181
|
}
|
|
1112
1182
|
|
|
1113
|
-
.text-pzh-blue
|
|
1183
|
+
.text-pzh-blue{
|
|
1114
1184
|
--tw-text-opacity: 1;
|
|
1115
1185
|
color: rgb(40 31 107 / var(--tw-text-opacity));
|
|
1116
1186
|
}
|
|
1117
1187
|
|
|
1118
|
-
.text-pzh-blue-dark
|
|
1188
|
+
.text-pzh-blue-dark{
|
|
1119
1189
|
--tw-text-opacity: 1;
|
|
1120
1190
|
color: rgb(22 17 59 / var(--tw-text-opacity));
|
|
1121
1191
|
}
|
|
1122
1192
|
|
|
1123
|
-
.text-
|
|
1193
|
+
.text-pzh-red{
|
|
1194
|
+
--tw-text-opacity: 1;
|
|
1195
|
+
color: rgb(209 31 61 / var(--tw-text-opacity));
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
.text-opacity-35{
|
|
1124
1199
|
--tw-text-opacity: 0.35;
|
|
1125
1200
|
}
|
|
1126
1201
|
|
|
1127
|
-
.text-opacity-55
|
|
1202
|
+
.text-opacity-55{
|
|
1128
1203
|
--tw-text-opacity: 0.55;
|
|
1129
1204
|
}
|
|
1130
1205
|
|
|
1131
|
-
.opacity-0
|
|
1206
|
+
.opacity-0{
|
|
1132
1207
|
opacity: 0;
|
|
1133
1208
|
}
|
|
1134
1209
|
|
|
1135
|
-
.opacity-100
|
|
1210
|
+
.opacity-100{
|
|
1136
1211
|
opacity: 1;
|
|
1137
1212
|
}
|
|
1138
1213
|
|
|
1139
|
-
.
|
|
1214
|
+
.opacity-50{
|
|
1215
|
+
opacity: 0.5;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
.shadow-xl{
|
|
1140
1219
|
--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
1141
1220
|
--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
|
|
1142
1221
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1143
1222
|
}
|
|
1144
1223
|
|
|
1145
|
-
.drop-shadow
|
|
1224
|
+
.drop-shadow{
|
|
1146
1225
|
--tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
|
|
1147
1226
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1148
1227
|
}
|
|
1149
1228
|
|
|
1150
|
-
.filter
|
|
1229
|
+
.filter{
|
|
1151
1230
|
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1152
1231
|
}
|
|
1153
1232
|
|
|
1154
|
-
.transition
|
|
1233
|
+
.transition{
|
|
1155
1234
|
transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
|
|
1156
1235
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1157
1236
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
|
|
@@ -1159,39 +1238,39 @@ select {
|
|
|
1159
1238
|
transition-duration: 150ms;
|
|
1160
1239
|
}
|
|
1161
1240
|
|
|
1162
|
-
.transition-opacity
|
|
1241
|
+
.transition-opacity{
|
|
1163
1242
|
transition-property: opacity;
|
|
1164
1243
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1165
1244
|
transition-duration: 150ms;
|
|
1166
1245
|
}
|
|
1167
1246
|
|
|
1168
|
-
.transition-all
|
|
1247
|
+
.transition-all{
|
|
1169
1248
|
transition-property: all;
|
|
1170
1249
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1171
1250
|
transition-duration: 150ms;
|
|
1172
1251
|
}
|
|
1173
1252
|
|
|
1174
|
-
.duration-150
|
|
1253
|
+
.duration-150{
|
|
1175
1254
|
transition-duration: 150ms;
|
|
1176
1255
|
}
|
|
1177
1256
|
|
|
1178
|
-
.duration-200
|
|
1257
|
+
.duration-200{
|
|
1179
1258
|
transition-duration: 200ms;
|
|
1180
1259
|
}
|
|
1181
1260
|
|
|
1182
|
-
.duration-300
|
|
1261
|
+
.duration-300{
|
|
1183
1262
|
transition-duration: 300ms;
|
|
1184
1263
|
}
|
|
1185
1264
|
|
|
1186
|
-
.ease-in-out
|
|
1265
|
+
.ease-in-out{
|
|
1187
1266
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1188
1267
|
}
|
|
1189
1268
|
|
|
1190
|
-
.ease-out
|
|
1269
|
+
.ease-out{
|
|
1191
1270
|
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
1192
1271
|
}
|
|
1193
1272
|
|
|
1194
|
-
.ease-in
|
|
1273
|
+
.ease-in{
|
|
1195
1274
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
1196
1275
|
}
|
|
1197
1276
|
|
|
@@ -1246,7 +1325,7 @@ h6,
|
|
|
1246
1325
|
font-weight: 700;
|
|
1247
1326
|
}
|
|
1248
1327
|
|
|
1249
|
-
.pzh-button
|
|
1328
|
+
.pzh-button{
|
|
1250
1329
|
display: inline-block;
|
|
1251
1330
|
border-radius: 0.25rem;
|
|
1252
1331
|
line-height: 1;
|
|
@@ -1260,7 +1339,7 @@ h6,
|
|
|
1260
1339
|
font-weight: 700;
|
|
1261
1340
|
}
|
|
1262
1341
|
|
|
1263
|
-
.pzh-button:focus
|
|
1342
|
+
.pzh-button:focus{
|
|
1264
1343
|
outline: 2px solid transparent;
|
|
1265
1344
|
outline-offset: 2px;
|
|
1266
1345
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
@@ -1268,7 +1347,7 @@ h6,
|
|
|
1268
1347
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1269
1348
|
}
|
|
1270
1349
|
|
|
1271
|
-
.pzh-button:disabled
|
|
1350
|
+
.pzh-button:disabled{
|
|
1272
1351
|
cursor: not-allowed;
|
|
1273
1352
|
--tw-bg-opacity: 1;
|
|
1274
1353
|
background-color: rgb(235 235 235 / var(--tw-bg-opacity));
|
|
@@ -1276,7 +1355,7 @@ h6,
|
|
|
1276
1355
|
--tw-text-opacity: 0.35;
|
|
1277
1356
|
}
|
|
1278
1357
|
|
|
1279
|
-
.pzh-form-input
|
|
1358
|
+
.pzh-form-input{
|
|
1280
1359
|
display: block;
|
|
1281
1360
|
width: 100%;
|
|
1282
1361
|
-webkit-appearance: none;
|
|
@@ -1286,232 +1365,421 @@ h6,
|
|
|
1286
1365
|
border-width: 1px;
|
|
1287
1366
|
border-color: rgb(22 17 59 / var(--tw-border-opacity));
|
|
1288
1367
|
--tw-border-opacity: 0.35;
|
|
1368
|
+
padding-top: 15px;
|
|
1369
|
+
padding-bottom: 11px;
|
|
1289
1370
|
line-height: 1;
|
|
1290
1371
|
--tw-text-opacity: 1;
|
|
1291
1372
|
color: rgb(22 17 59 / var(--tw-text-opacity));
|
|
1292
1373
|
}
|
|
1293
1374
|
|
|
1294
|
-
.pzh-form-input::-moz-placeholder
|
|
1375
|
+
.pzh-form-input::-moz-placeholder{
|
|
1295
1376
|
color: rgb(22 17 59 / var(--tw-placeholder-opacity));
|
|
1296
1377
|
--tw-placeholder-opacity: 0.55;
|
|
1297
1378
|
}
|
|
1298
1379
|
|
|
1299
|
-
.pzh-form-input:-ms-input-placeholder
|
|
1380
|
+
.pzh-form-input:-ms-input-placeholder{
|
|
1300
1381
|
color: rgb(22 17 59 / var(--tw-placeholder-opacity));
|
|
1301
1382
|
--tw-placeholder-opacity: 0.55;
|
|
1302
1383
|
}
|
|
1303
1384
|
|
|
1304
|
-
.pzh-form-input::placeholder
|
|
1385
|
+
.pzh-form-input::placeholder{
|
|
1305
1386
|
color: rgb(22 17 59 / var(--tw-placeholder-opacity));
|
|
1306
1387
|
--tw-placeholder-opacity: 0.55;
|
|
1307
1388
|
}
|
|
1308
1389
|
|
|
1309
|
-
.pzh-form-input:hover
|
|
1390
|
+
.pzh-form-input:hover{
|
|
1310
1391
|
--tw-border-opacity: 1;
|
|
1311
1392
|
border-color: rgb(160 174 192 / var(--tw-border-opacity));
|
|
1312
1393
|
}
|
|
1313
1394
|
|
|
1314
|
-
.pzh-form-input:focus
|
|
1395
|
+
.pzh-form-input:focus{
|
|
1315
1396
|
--tw-border-opacity: 1;
|
|
1316
|
-
border-color: rgb(
|
|
1397
|
+
border-color: rgb(123 173 222 / var(--tw-border-opacity));
|
|
1317
1398
|
outline: 2px solid transparent;
|
|
1318
1399
|
outline-offset: 2px;
|
|
1319
1400
|
}
|
|
1320
1401
|
|
|
1321
|
-
.pzh-form-input:disabled
|
|
1402
|
+
.pzh-form-input:disabled{
|
|
1403
|
+
border-color: rgb(22 17 59 / var(--tw-border-opacity));
|
|
1404
|
+
--tw-border-opacity: 0.1;
|
|
1322
1405
|
--tw-bg-opacity: 1;
|
|
1323
1406
|
background-color: rgb(235 235 235 / var(--tw-bg-opacity));
|
|
1324
1407
|
--tw-text-opacity: 0.55;
|
|
1325
1408
|
}
|
|
1326
1409
|
|
|
1327
|
-
.
|
|
1410
|
+
.pzh-form-radio:checked + label:before, .pzh-form-radio:not(:checked) + label:before{
|
|
1411
|
+
position: absolute;
|
|
1412
|
+
left: 0px;
|
|
1413
|
+
top: 0px;
|
|
1414
|
+
height: 24px;
|
|
1415
|
+
width: 24px;
|
|
1416
|
+
border-radius: 9999px;
|
|
1417
|
+
border-width: 1px;
|
|
1418
|
+
border-color: rgb(22 17 59 / var(--tw-border-opacity));
|
|
1419
|
+
--tw-border-opacity: 0.35;
|
|
1420
|
+
--tw-bg-opacity: 1;
|
|
1421
|
+
background-color: rgb(244 244 247 / var(--tw-bg-opacity));
|
|
1422
|
+
content: '';
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
.pzh-form-radio:checked + label:after, .pzh-form-radio:not(:checked) + label:after{
|
|
1426
|
+
position: absolute;
|
|
1427
|
+
top: 0.25rem;
|
|
1428
|
+
left: 0.25rem;
|
|
1429
|
+
height: 14px;
|
|
1430
|
+
width: 14px;
|
|
1431
|
+
border-radius: 9999px;
|
|
1432
|
+
--tw-bg-opacity: 1;
|
|
1433
|
+
background-color: rgb(0 128 77 / var(--tw-bg-opacity));
|
|
1434
|
+
transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
|
|
1435
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1436
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
|
|
1437
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1438
|
+
transition-duration: 200ms;
|
|
1439
|
+
content: '';
|
|
1440
|
+
}
|
|
1441
|
+
|
|
1442
|
+
.pzh-form-radio:not(:checked) + label:after,
|
|
1443
|
+
.pzh-form-checkbox:not(:checked) + label:after {
|
|
1444
|
+
opacity: 0;
|
|
1445
|
+
transform: scale(0);
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
.pzh-form-radio:checked + label:after,
|
|
1449
|
+
.pzh-form-checkbox:checked + label:after {
|
|
1450
|
+
opacity: 1;
|
|
1451
|
+
transform: scale(1);
|
|
1452
|
+
}
|
|
1453
|
+
|
|
1454
|
+
.pzh-form-radio:disabled + label:before, .pzh-form-checkbox:disabled + label:before{
|
|
1455
|
+
--tw-border-opacity: 1;
|
|
1456
|
+
border-color: rgb(235 235 235 / var(--tw-border-opacity));
|
|
1457
|
+
--tw-bg-opacity: 1;
|
|
1458
|
+
background-color: rgb(235 235 235 / var(--tw-bg-opacity));
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
.pzh-form-checkbox + label:before{
|
|
1462
|
+
position: absolute;
|
|
1463
|
+
left: 0px;
|
|
1464
|
+
top: 0px;
|
|
1465
|
+
height: 24px;
|
|
1466
|
+
width: 24px;
|
|
1467
|
+
border-radius: 4px;
|
|
1468
|
+
border-width: 1px;
|
|
1469
|
+
border-color: rgb(22 17 59 / var(--tw-border-opacity));
|
|
1470
|
+
--tw-border-opacity: 0.35;
|
|
1471
|
+
--tw-bg-opacity: 1;
|
|
1472
|
+
background-color: rgb(244 244 247 / var(--tw-bg-opacity));
|
|
1473
|
+
transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
|
|
1474
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1475
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
|
|
1476
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1477
|
+
transition-duration: 200ms;
|
|
1478
|
+
content: '';
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
.pzh-form-checkbox:checked:not(:disabled) + label:before{
|
|
1482
|
+
--tw-bg-opacity: 1;
|
|
1483
|
+
background-color: rgb(0 128 77 / var(--tw-bg-opacity));
|
|
1484
|
+
}
|
|
1485
|
+
|
|
1486
|
+
.pzh-form-checkbox:checked + label:after, .pzh-form-checkbox:not(:checked) + label:after{
|
|
1487
|
+
position: absolute;
|
|
1488
|
+
top: 2px;
|
|
1489
|
+
left: 0.25rem;
|
|
1490
|
+
height: 14px;
|
|
1491
|
+
width: 14px;
|
|
1492
|
+
--tw-text-opacity: 1;
|
|
1493
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1494
|
+
transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
|
|
1495
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1496
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
|
|
1497
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1498
|
+
transition-duration: 200ms;
|
|
1499
|
+
content: url("data:image/svg+xml; utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'><path fill='white' d='M438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6L182.6 406.6C170.1 419.1 149.9 419.1 137.4 406.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4C21.87 220.9 42.13 220.9 54.63 233.4L159.1 338.7L393.4 105.4C405.9 92.88 426.1 92.88 438.6 105.4H438.6z'/></svg>");
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1502
|
+
.pzh-form-checkbox:checked:disabled + label:after {
|
|
1503
|
+
content: url("data:image/svg+xml; utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'><path fill='rgba(22, 17, 59, 0.35)' d='M438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6L182.6 406.6C170.1 419.1 149.9 419.1 137.4 406.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4C21.87 220.9 42.13 220.9 54.63 233.4L159.1 338.7L393.4 105.4C405.9 92.88 426.1 92.88 438.6 105.4H438.6z'/></svg>");
|
|
1504
|
+
}
|
|
1505
|
+
|
|
1506
|
+
.react-datepicker {
|
|
1507
|
+
font-family: 'Karbon Regular', sans-serif;
|
|
1508
|
+
font-weight: 400;
|
|
1509
|
+
font-size: 0.8rem;
|
|
1510
|
+
box-shadow: 0px 18px 60px rgba(0, 0, 0, 0.07),
|
|
1511
|
+
0px 4.02054px 13.4018px rgba(0, 0, 0, 0.0417275),
|
|
1512
|
+
0px 1.19702px 3.99006px rgba(0, 0, 0, 0.0282725);
|
|
1513
|
+
border-style: none;
|
|
1514
|
+
--tw-text-opacity: 1;
|
|
1515
|
+
color: rgb(22 17 59 / var(--tw-text-opacity));
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1518
|
+
.react-datepicker__triangle {
|
|
1519
|
+
display: none;
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1522
|
+
.react-datepicker__header{
|
|
1523
|
+
border-style: none;
|
|
1524
|
+
--tw-bg-opacity: 1;
|
|
1525
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1528
|
+
.react-datepicker__month{
|
|
1529
|
+
margin-left: 0.125rem;
|
|
1530
|
+
margin-right: 0.125rem;
|
|
1531
|
+
margin-top: 0px;
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
.react-datepicker__day-names{
|
|
1535
|
+
background-color: rgb(22 17 59 / var(--tw-bg-opacity));
|
|
1536
|
+
--tw-bg-opacity: 0.1;
|
|
1537
|
+
}
|
|
1538
|
+
|
|
1539
|
+
.react-datepicker__day-name{
|
|
1540
|
+
margin-top: 0px;
|
|
1541
|
+
margin-bottom: 0px;
|
|
1542
|
+
line-height: 26px;
|
|
1543
|
+
font-weight: 700;
|
|
1544
|
+
}
|
|
1545
|
+
|
|
1546
|
+
.react-datepicker__current-month{
|
|
1547
|
+
margin-bottom: 0.5rem;
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1550
|
+
.react-datepicker__day--outside-month:not(.react-datepicker__day--selected){
|
|
1551
|
+
color: rgb(22 17 59 / var(--tw-text-opacity));
|
|
1552
|
+
--tw-text-opacity: 0.35;
|
|
1553
|
+
}
|
|
1554
|
+
|
|
1555
|
+
.react-datepicker__day-name, .react-datepicker__day, .react-datepicker__time-name{
|
|
1556
|
+
margin-left: 0.5rem;
|
|
1557
|
+
margin-right: 0.5rem;
|
|
1558
|
+
margin-top: 0.25rem;
|
|
1559
|
+
margin-bottom: 0.25rem;
|
|
1560
|
+
height: 26px;
|
|
1561
|
+
width: 26px;
|
|
1562
|
+
line-height: 28px;
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
.react-datepicker__day{
|
|
1566
|
+
border-radius: 9999px;
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
.react-datepicker__day:hover{
|
|
1570
|
+
border-radius: 9999px;
|
|
1571
|
+
}
|
|
1572
|
+
|
|
1573
|
+
.react-datepicker__day--today, .react-datepicker__day--keyboard-selected{
|
|
1574
|
+
background-color: rgb(22 17 59 / var(--tw-bg-opacity));
|
|
1575
|
+
--tw-bg-opacity: 0.1;
|
|
1576
|
+
--tw-text-opacity: 1;
|
|
1577
|
+
color: rgb(22 17 59 / var(--tw-text-opacity));
|
|
1578
|
+
}
|
|
1579
|
+
|
|
1580
|
+
.react-datepicker__day--selected, .react-datepicker__day--selected:hover{
|
|
1581
|
+
--tw-bg-opacity: 1;
|
|
1582
|
+
background-color: rgb(0 128 77 / var(--tw-bg-opacity));
|
|
1583
|
+
font-weight: 700;
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1586
|
+
.hover\:translate-y-0:hover{
|
|
1328
1587
|
--tw-translate-y: 0px;
|
|
1329
1588
|
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));
|
|
1330
1589
|
}
|
|
1331
1590
|
|
|
1332
|
-
.hover\:border-
|
|
1591
|
+
.hover\:border-pzh-blue-dark:hover{
|
|
1333
1592
|
--tw-border-opacity: 1;
|
|
1593
|
+
border-color: rgb(22 17 59 / var(--tw-border-opacity));
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1596
|
+
.hover\:border-opacity-100:hover{
|
|
1597
|
+
--tw-border-opacity: 1;
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
.hover\:border-opacity-35:hover{
|
|
1601
|
+
--tw-border-opacity: 0.35;
|
|
1334
1602
|
}
|
|
1335
1603
|
|
|
1336
|
-
.hover\:bg-white:hover
|
|
1604
|
+
.hover\:bg-white:hover{
|
|
1337
1605
|
--tw-bg-opacity: 1;
|
|
1338
1606
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1339
1607
|
}
|
|
1340
1608
|
|
|
1341
|
-
.hover\:bg-pzh-blue-dark:hover
|
|
1609
|
+
.hover\:bg-pzh-blue-dark:hover{
|
|
1342
1610
|
--tw-bg-opacity: 1;
|
|
1343
1611
|
background-color: rgb(22 17 59 / var(--tw-bg-opacity));
|
|
1344
1612
|
}
|
|
1345
1613
|
|
|
1346
|
-
.hover\:bg-pzh-green-dark:hover
|
|
1614
|
+
.hover\:bg-pzh-green-dark:hover{
|
|
1347
1615
|
--tw-bg-opacity: 1;
|
|
1348
1616
|
background-color: rgb(0 77 46 / var(--tw-bg-opacity));
|
|
1349
1617
|
}
|
|
1350
1618
|
|
|
1351
|
-
.hover\:bg-opacity-10:hover
|
|
1619
|
+
.hover\:bg-opacity-10:hover{
|
|
1352
1620
|
--tw-bg-opacity: 0.1;
|
|
1353
1621
|
}
|
|
1354
1622
|
|
|
1355
|
-
.hover\:text-pzh-blue:hover
|
|
1623
|
+
.hover\:text-pzh-blue:hover{
|
|
1356
1624
|
--tw-text-opacity: 1;
|
|
1357
1625
|
color: rgb(40 31 107 / var(--tw-text-opacity));
|
|
1358
1626
|
}
|
|
1359
1627
|
|
|
1360
|
-
.hover\:text-white:hover
|
|
1628
|
+
.hover\:text-white:hover{
|
|
1361
1629
|
--tw-text-opacity: 1;
|
|
1362
1630
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1363
1631
|
}
|
|
1364
1632
|
|
|
1365
|
-
.hover\:text-pzh-green:hover
|
|
1633
|
+
.hover\:text-pzh-green:hover{
|
|
1366
1634
|
--tw-text-opacity: 1;
|
|
1367
1635
|
color: rgb(0 128 77 / var(--tw-text-opacity));
|
|
1368
1636
|
}
|
|
1369
1637
|
|
|
1370
|
-
.hover\:underline:hover
|
|
1638
|
+
.hover\:underline:hover{
|
|
1371
1639
|
-webkit-text-decoration-line: underline;
|
|
1372
1640
|
text-decoration-line: underline;
|
|
1373
1641
|
}
|
|
1374
1642
|
|
|
1375
|
-
.focus\:bg-pzh-blue:focus
|
|
1643
|
+
.focus\:bg-pzh-blue:focus{
|
|
1376
1644
|
--tw-bg-opacity: 1;
|
|
1377
1645
|
background-color: rgb(40 31 107 / var(--tw-bg-opacity));
|
|
1378
1646
|
}
|
|
1379
1647
|
|
|
1380
|
-
.focus\:text-white:focus
|
|
1648
|
+
.focus\:text-white:focus{
|
|
1381
1649
|
--tw-text-opacity: 1;
|
|
1382
1650
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1383
1651
|
}
|
|
1384
1652
|
|
|
1385
|
-
.focus\:outline-none:focus
|
|
1653
|
+
.focus\:outline-none:focus{
|
|
1386
1654
|
outline: 2px solid transparent;
|
|
1387
1655
|
outline-offset: 2px;
|
|
1388
1656
|
}
|
|
1389
1657
|
|
|
1390
|
-
.focus\:ring-2:focus
|
|
1658
|
+
.focus\:ring-2:focus{
|
|
1391
1659
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1392
1660
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1393
1661
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1394
1662
|
}
|
|
1395
1663
|
|
|
1396
|
-
.focus\:ring-indigo-500:focus
|
|
1664
|
+
.focus\:ring-indigo-500:focus{
|
|
1397
1665
|
--tw-ring-opacity: 1;
|
|
1398
1666
|
--tw-ring-color: rgb(102 126 234 / var(--tw-ring-opacity));
|
|
1399
1667
|
}
|
|
1400
1668
|
|
|
1401
|
-
.focus\:ring-offset-2:focus
|
|
1669
|
+
.focus\:ring-offset-2:focus{
|
|
1402
1670
|
--tw-ring-offset-width: 2px;
|
|
1403
1671
|
}
|
|
1404
1672
|
|
|
1405
|
-
@media (min-width: 640px)
|
|
1406
|
-
.sm\:my-8
|
|
1673
|
+
@media (min-width: 640px){
|
|
1674
|
+
.sm\:my-8{
|
|
1407
1675
|
margin-top: 2rem;
|
|
1408
1676
|
margin-bottom: 2rem;
|
|
1409
1677
|
}
|
|
1410
1678
|
|
|
1411
|
-
.sm\:mt-8
|
|
1679
|
+
.sm\:mt-8{
|
|
1412
1680
|
margin-top: 2rem;
|
|
1413
1681
|
}
|
|
1414
1682
|
|
|
1415
|
-
.sm\:-mt-2
|
|
1683
|
+
.sm\:-mt-2{
|
|
1416
1684
|
margin-top: -0.5rem;
|
|
1417
1685
|
}
|
|
1418
1686
|
|
|
1419
|
-
.sm\:-mr-2
|
|
1687
|
+
.sm\:-mr-2{
|
|
1420
1688
|
margin-right: -0.5rem;
|
|
1421
1689
|
}
|
|
1422
1690
|
|
|
1423
|
-
.sm\:block
|
|
1691
|
+
.sm\:block{
|
|
1424
1692
|
display: block;
|
|
1425
1693
|
}
|
|
1426
1694
|
|
|
1427
|
-
.sm\:inline-block
|
|
1695
|
+
.sm\:inline-block{
|
|
1428
1696
|
display: inline-block;
|
|
1429
1697
|
}
|
|
1430
1698
|
|
|
1431
|
-
.sm\:h-screen
|
|
1699
|
+
.sm\:h-screen{
|
|
1432
1700
|
height: 100vh;
|
|
1433
1701
|
}
|
|
1434
1702
|
|
|
1435
|
-
.sm\:w-full
|
|
1703
|
+
.sm\:w-full{
|
|
1436
1704
|
width: 100%;
|
|
1437
1705
|
}
|
|
1438
1706
|
|
|
1439
|
-
.sm\:translate-y-0
|
|
1707
|
+
.sm\:translate-y-0{
|
|
1440
1708
|
--tw-translate-y: 0px;
|
|
1441
1709
|
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));
|
|
1442
1710
|
}
|
|
1443
1711
|
|
|
1444
|
-
.sm\:scale-95
|
|
1712
|
+
.sm\:scale-95{
|
|
1445
1713
|
--tw-scale-x: .95;
|
|
1446
1714
|
--tw-scale-y: .95;
|
|
1447
1715
|
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));
|
|
1448
1716
|
}
|
|
1449
1717
|
|
|
1450
|
-
.sm\:scale-100
|
|
1718
|
+
.sm\:scale-100{
|
|
1451
1719
|
--tw-scale-x: 1;
|
|
1452
1720
|
--tw-scale-y: 1;
|
|
1453
1721
|
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));
|
|
1454
1722
|
}
|
|
1455
1723
|
|
|
1456
|
-
.sm\:items-start
|
|
1724
|
+
.sm\:items-start{
|
|
1457
1725
|
align-items: flex-start;
|
|
1458
1726
|
}
|
|
1459
1727
|
|
|
1460
|
-
.sm\:p-8
|
|
1728
|
+
.sm\:p-8{
|
|
1461
1729
|
padding: 2rem;
|
|
1462
1730
|
}
|
|
1463
1731
|
|
|
1464
|
-
.sm\:p-2
|
|
1732
|
+
.sm\:p-2{
|
|
1465
1733
|
padding: 0.5rem;
|
|
1466
1734
|
}
|
|
1467
1735
|
|
|
1468
|
-
.sm\:px-6
|
|
1736
|
+
.sm\:px-6{
|
|
1469
1737
|
padding-left: 1.5rem;
|
|
1470
1738
|
padding-right: 1.5rem;
|
|
1471
1739
|
}
|
|
1472
1740
|
|
|
1473
|
-
.sm\:py-10
|
|
1741
|
+
.sm\:py-10{
|
|
1474
1742
|
padding-top: 2.5rem;
|
|
1475
1743
|
padding-bottom: 2.5rem;
|
|
1476
1744
|
}
|
|
1477
1745
|
|
|
1478
|
-
.sm\:pt-1
|
|
1746
|
+
.sm\:pt-1{
|
|
1479
1747
|
padding-top: 0.25rem;
|
|
1480
1748
|
}
|
|
1481
1749
|
|
|
1482
|
-
.sm\:pr-2
|
|
1750
|
+
.sm\:pr-2{
|
|
1483
1751
|
padding-right: 0.5rem;
|
|
1484
1752
|
}
|
|
1485
1753
|
|
|
1486
|
-
.sm\:text-center
|
|
1754
|
+
.sm\:text-center{
|
|
1487
1755
|
text-align: center;
|
|
1488
1756
|
}
|
|
1489
1757
|
|
|
1490
|
-
.sm\:align-middle
|
|
1758
|
+
.sm\:align-middle{
|
|
1491
1759
|
vertical-align: middle;
|
|
1492
1760
|
}
|
|
1493
1761
|
}
|
|
1494
1762
|
|
|
1495
|
-
@media (min-width: 768px)
|
|
1496
|
-
.md\:ml-4
|
|
1763
|
+
@media (min-width: 768px){
|
|
1764
|
+
.md\:ml-4{
|
|
1497
1765
|
margin-left: 1rem;
|
|
1498
1766
|
}
|
|
1499
1767
|
|
|
1500
|
-
.md\:p-4
|
|
1768
|
+
.md\:p-4{
|
|
1501
1769
|
padding: 1rem;
|
|
1502
1770
|
}
|
|
1503
1771
|
|
|
1504
|
-
.md\:pb-4
|
|
1772
|
+
.md\:pb-4{
|
|
1505
1773
|
padding-bottom: 1rem;
|
|
1506
1774
|
}
|
|
1507
1775
|
|
|
1508
|
-
.md\:text-base
|
|
1776
|
+
.md\:text-base{
|
|
1509
1777
|
font-size: 1rem;
|
|
1510
1778
|
}
|
|
1511
1779
|
}
|
|
1512
1780
|
|
|
1513
|
-
@media (min-width: 1024px)
|
|
1514
|
-
.lg\:px-8
|
|
1781
|
+
@media (min-width: 1024px){
|
|
1782
|
+
.lg\:px-8{
|
|
1515
1783
|
padding-left: 2rem;
|
|
1516
1784
|
padding-right: 2rem;
|
|
1517
1785
|
}
|