@pzh-ui/css 0.0.13 → 0.0.16
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/config/index.js +1 -0
- package/package.json +2 -2
- package/src/tailwind.css +549 -220
- package/src/tailwind.src.css +128 -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,589 @@ 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
|
+
.right-\[14px\]{
|
|
743
|
+
right: 14px;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
.top-\[14px\]{
|
|
747
|
+
top: 14px;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
.z-10{
|
|
737
751
|
z-index: 10;
|
|
738
752
|
}
|
|
739
753
|
|
|
740
|
-
.z-50
|
|
754
|
+
.z-50{
|
|
741
755
|
z-index: 50;
|
|
742
756
|
}
|
|
743
757
|
|
|
744
|
-
.m-0
|
|
758
|
+
.m-0{
|
|
745
759
|
margin: 0px;
|
|
746
760
|
}
|
|
747
761
|
|
|
748
|
-
.mx-auto
|
|
762
|
+
.mx-auto{
|
|
749
763
|
margin-left: auto;
|
|
750
764
|
margin-right: auto;
|
|
751
765
|
}
|
|
752
766
|
|
|
753
|
-
.mr-2
|
|
767
|
+
.mr-2{
|
|
754
768
|
margin-right: 0.5rem;
|
|
755
769
|
}
|
|
756
770
|
|
|
757
|
-
.ml-2
|
|
771
|
+
.ml-2{
|
|
758
772
|
margin-left: 0.5rem;
|
|
759
773
|
}
|
|
760
774
|
|
|
761
|
-
|
|
775
|
+
.-mt-\[2px\]{
|
|
776
|
+
margin-top: -2px;
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
.-mt-0\.5{
|
|
780
|
+
margin-top: -0.125rem;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
.-mt-0{
|
|
784
|
+
margin-top: -0px;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.mr-\[8px\]{
|
|
788
|
+
margin-right: 8px;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
.ml-4{
|
|
762
792
|
margin-left: 1rem;
|
|
763
793
|
}
|
|
764
794
|
|
|
765
|
-
.-mt-8
|
|
795
|
+
.-mt-8{
|
|
766
796
|
margin-top: -2rem;
|
|
767
797
|
}
|
|
768
798
|
|
|
769
|
-
.-mr-8
|
|
799
|
+
.-mr-8{
|
|
770
800
|
margin-right: -2rem;
|
|
771
801
|
}
|
|
772
802
|
|
|
773
|
-
.ml-3
|
|
803
|
+
.ml-3{
|
|
774
804
|
margin-left: 0.75rem;
|
|
775
805
|
}
|
|
776
806
|
|
|
777
|
-
.
|
|
807
|
+
.mb-2{
|
|
808
|
+
margin-bottom: 0.5rem;
|
|
809
|
+
}
|
|
810
|
+
|
|
811
|
+
.ml-1{
|
|
812
|
+
margin-left: 0.25rem;
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
.mb-6{
|
|
816
|
+
margin-bottom: 1.5rem;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
.mb-4{
|
|
820
|
+
margin-bottom: 1rem;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
.mt-2{
|
|
824
|
+
margin-top: 0.5rem;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
.block{
|
|
778
828
|
display: block;
|
|
779
829
|
}
|
|
780
830
|
|
|
781
|
-
.inline-block
|
|
831
|
+
.inline-block{
|
|
782
832
|
display: inline-block;
|
|
783
833
|
}
|
|
784
834
|
|
|
785
|
-
.flex
|
|
835
|
+
.flex{
|
|
786
836
|
display: flex;
|
|
787
837
|
}
|
|
788
838
|
|
|
789
|
-
.contents
|
|
839
|
+
.contents{
|
|
790
840
|
display: contents;
|
|
791
841
|
}
|
|
792
842
|
|
|
793
|
-
.hidden
|
|
843
|
+
.hidden{
|
|
794
844
|
display: none;
|
|
795
845
|
}
|
|
796
846
|
|
|
797
|
-
.h-6
|
|
847
|
+
.h-6{
|
|
798
848
|
height: 1.5rem;
|
|
799
849
|
}
|
|
800
850
|
|
|
801
|
-
.h
|
|
851
|
+
.h-\[48px\]{
|
|
852
|
+
height: 48px;
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
.h-\[36px\]{
|
|
856
|
+
height: 36px;
|
|
857
|
+
}
|
|
858
|
+
|
|
859
|
+
.h-4{
|
|
802
860
|
height: 1rem;
|
|
803
861
|
}
|
|
804
862
|
|
|
805
|
-
.min-h-screen
|
|
863
|
+
.min-h-screen{
|
|
806
864
|
min-height: 100vh;
|
|
807
865
|
}
|
|
808
866
|
|
|
809
|
-
.
|
|
867
|
+
.min-h-\[48px\]{
|
|
868
|
+
min-height: 48px;
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
.w-6{
|
|
810
872
|
width: 1.5rem;
|
|
811
873
|
}
|
|
812
874
|
|
|
813
|
-
.w-full
|
|
875
|
+
.w-full{
|
|
814
876
|
width: 100%;
|
|
815
877
|
}
|
|
816
878
|
|
|
817
|
-
.w-4
|
|
879
|
+
.w-4{
|
|
818
880
|
width: 1rem;
|
|
819
881
|
}
|
|
820
882
|
|
|
821
|
-
.max-w-screen-xl
|
|
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
|
-
.
|
|
926
|
+
.justify-between{
|
|
927
|
+
justify-content: space-between;
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
.overflow-hidden{
|
|
869
931
|
overflow: hidden;
|
|
870
932
|
}
|
|
871
933
|
|
|
872
|
-
.overflow-y-auto
|
|
934
|
+
.overflow-y-auto{
|
|
873
935
|
overflow-y: auto;
|
|
874
936
|
}
|
|
875
937
|
|
|
876
|
-
.break-words
|
|
938
|
+
.break-words{
|
|
877
939
|
overflow-wrap: break-word;
|
|
878
940
|
}
|
|
879
941
|
|
|
880
|
-
.rounded
|
|
942
|
+
.rounded{
|
|
881
943
|
border-radius: 0.25rem;
|
|
882
944
|
}
|
|
883
945
|
|
|
884
|
-
.rounded-lg
|
|
946
|
+
.rounded-lg{
|
|
885
947
|
border-radius: 0.5rem;
|
|
886
948
|
}
|
|
887
949
|
|
|
888
|
-
.rounded-md
|
|
950
|
+
.rounded-md{
|
|
889
951
|
border-radius: 0.375rem;
|
|
890
952
|
}
|
|
891
953
|
|
|
892
|
-
.rounded
|
|
954
|
+
.rounded-\[4px\]{
|
|
955
|
+
border-radius: 4px;
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
.rounded-t-md{
|
|
893
959
|
border-top-left-radius: 0.375rem;
|
|
894
960
|
border-top-right-radius: 0.375rem;
|
|
895
961
|
}
|
|
896
962
|
|
|
897
|
-
.border
|
|
963
|
+
.border{
|
|
898
964
|
border-width: 1px;
|
|
899
965
|
}
|
|
900
966
|
|
|
901
|
-
.border-
|
|
967
|
+
.border-dashed{
|
|
968
|
+
border-style: dashed;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
.border-pzh-blue-dark{
|
|
902
972
|
--tw-border-opacity: 1;
|
|
903
973
|
border-color: rgb(22 17 59 / var(--tw-border-opacity));
|
|
904
974
|
}
|
|
905
975
|
|
|
906
|
-
.border-opacity-35
|
|
976
|
+
.border-opacity-35{
|
|
907
977
|
--tw-border-opacity: 0.35;
|
|
908
978
|
}
|
|
909
979
|
|
|
910
|
-
.
|
|
980
|
+
.border-opacity-10{
|
|
981
|
+
--tw-border-opacity: 0.1;
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
.bg-pzh-blue{
|
|
911
985
|
--tw-bg-opacity: 1;
|
|
912
986
|
background-color: rgb(40 31 107 / var(--tw-bg-opacity));
|
|
913
987
|
}
|
|
914
988
|
|
|
915
|
-
.bg-pzh-red
|
|
989
|
+
.bg-pzh-red{
|
|
916
990
|
--tw-bg-opacity: 1;
|
|
917
991
|
background-color: rgb(209 31 61 / var(--tw-bg-opacity));
|
|
918
992
|
}
|
|
919
993
|
|
|
920
|
-
.bg-pzh-yellow
|
|
994
|
+
.bg-pzh-yellow{
|
|
921
995
|
--tw-bg-opacity: 1;
|
|
922
996
|
background-color: rgb(239 204 54 / var(--tw-bg-opacity));
|
|
923
997
|
}
|
|
924
998
|
|
|
925
|
-
.bg-pzh-green
|
|
999
|
+
.bg-pzh-green{
|
|
926
1000
|
--tw-bg-opacity: 1;
|
|
927
1001
|
background-color: rgb(0 128 77 / var(--tw-bg-opacity));
|
|
928
1002
|
}
|
|
929
1003
|
|
|
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 {
|
|
1004
|
+
.bg-pzh-cool-gray-dark{
|
|
936
1005
|
--tw-bg-opacity: 1;
|
|
937
1006
|
background-color: rgb(92 92 92 / var(--tw-bg-opacity));
|
|
938
1007
|
}
|
|
939
1008
|
|
|
940
|
-
.bg-white
|
|
1009
|
+
.bg-white{
|
|
941
1010
|
--tw-bg-opacity: 1;
|
|
942
1011
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
943
1012
|
}
|
|
944
1013
|
|
|
945
|
-
.bg-pzh-blue-light
|
|
1014
|
+
.bg-pzh-blue-light{
|
|
946
1015
|
--tw-bg-opacity: 1;
|
|
947
1016
|
background-color: rgb(123 173 222 / var(--tw-bg-opacity));
|
|
948
1017
|
}
|
|
949
1018
|
|
|
950
|
-
.bg-
|
|
1019
|
+
.bg-pzh-gray{
|
|
1020
|
+
--tw-bg-opacity: 1;
|
|
1021
|
+
background-color: rgb(235 235 235 / var(--tw-bg-opacity));
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
.bg-opacity-50{
|
|
951
1025
|
--tw-bg-opacity: 0.5;
|
|
952
1026
|
}
|
|
953
1027
|
|
|
954
|
-
.bg-opacity-20
|
|
1028
|
+
.bg-opacity-20{
|
|
955
1029
|
--tw-bg-opacity: 0.2;
|
|
956
1030
|
}
|
|
957
1031
|
|
|
958
|
-
.p-1
|
|
1032
|
+
.p-1{
|
|
959
1033
|
padding: 0.25rem;
|
|
960
1034
|
}
|
|
961
1035
|
|
|
962
|
-
.p-6
|
|
1036
|
+
.p-6{
|
|
963
1037
|
padding: 1.5rem;
|
|
964
1038
|
}
|
|
965
1039
|
|
|
966
|
-
.p-2
|
|
1040
|
+
.p-2{
|
|
967
1041
|
padding: 0.5rem;
|
|
968
1042
|
}
|
|
969
1043
|
|
|
970
|
-
.px-3
|
|
1044
|
+
.px-3{
|
|
971
1045
|
padding-left: 0.75rem;
|
|
972
1046
|
padding-right: 0.75rem;
|
|
973
1047
|
}
|
|
974
1048
|
|
|
975
|
-
.py-2
|
|
1049
|
+
.py-2{
|
|
976
1050
|
padding-top: 0.5rem;
|
|
977
1051
|
padding-bottom: 0.5rem;
|
|
978
1052
|
}
|
|
979
1053
|
|
|
980
|
-
.px-4
|
|
1054
|
+
.px-4{
|
|
981
1055
|
padding-left: 1rem;
|
|
982
1056
|
padding-right: 1rem;
|
|
983
1057
|
}
|
|
984
1058
|
|
|
985
|
-
.px-\[12px\]
|
|
1059
|
+
.px-\[12px\]{
|
|
986
1060
|
padding-left: 12px;
|
|
987
1061
|
padding-right: 12px;
|
|
988
1062
|
}
|
|
989
1063
|
|
|
990
|
-
.px-6
|
|
1064
|
+
.px-6{
|
|
991
1065
|
padding-left: 1.5rem;
|
|
992
1066
|
padding-right: 1.5rem;
|
|
993
1067
|
}
|
|
994
1068
|
|
|
995
|
-
.py-1
|
|
1069
|
+
.py-1{
|
|
996
1070
|
padding-top: 0.25rem;
|
|
997
1071
|
padding-bottom: 0.25rem;
|
|
998
1072
|
}
|
|
999
1073
|
|
|
1000
|
-
.
|
|
1074
|
+
.py-6{
|
|
1075
|
+
padding-top: 1.5rem;
|
|
1076
|
+
padding-bottom: 1.5rem;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
.pr-16{
|
|
1001
1080
|
padding-right: 4rem;
|
|
1002
1081
|
}
|
|
1003
1082
|
|
|
1004
|
-
.pt-1
|
|
1083
|
+
.pt-1{
|
|
1005
1084
|
padding-top: 0.25rem;
|
|
1006
1085
|
}
|
|
1007
1086
|
|
|
1008
|
-
.pr-1
|
|
1087
|
+
.pr-1{
|
|
1009
1088
|
padding-right: 0.25rem;
|
|
1010
1089
|
}
|
|
1011
1090
|
|
|
1012
|
-
.pt-\[
|
|
1013
|
-
padding-top:
|
|
1091
|
+
.pt-\[15px\]{
|
|
1092
|
+
padding-top: 15px;
|
|
1014
1093
|
}
|
|
1015
1094
|
|
|
1016
|
-
.pb-\[12px\]
|
|
1095
|
+
.pb-\[12px\]{
|
|
1017
1096
|
padding-bottom: 12px;
|
|
1018
1097
|
}
|
|
1019
1098
|
|
|
1020
|
-
.pb-\[9px\]
|
|
1099
|
+
.pb-\[9px\]{
|
|
1021
1100
|
padding-bottom: 9px;
|
|
1022
1101
|
}
|
|
1023
1102
|
|
|
1024
|
-
.pt-\[12px\]
|
|
1103
|
+
.pt-\[12px\]{
|
|
1025
1104
|
padding-top: 12px;
|
|
1026
1105
|
}
|
|
1027
1106
|
|
|
1028
|
-
.pt-0
|
|
1107
|
+
.pt-0{
|
|
1029
1108
|
padding-top: 0px;
|
|
1030
1109
|
}
|
|
1031
1110
|
|
|
1032
|
-
.pt-2
|
|
1111
|
+
.pt-2{
|
|
1033
1112
|
padding-top: 0.5rem;
|
|
1034
1113
|
}
|
|
1035
1114
|
|
|
1036
|
-
.pb-3
|
|
1115
|
+
.pb-3{
|
|
1037
1116
|
padding-bottom: 0.75rem;
|
|
1038
1117
|
}
|
|
1039
1118
|
|
|
1040
|
-
.pt-4
|
|
1119
|
+
.pt-4{
|
|
1041
1120
|
padding-top: 1rem;
|
|
1042
1121
|
}
|
|
1043
1122
|
|
|
1044
|
-
.pb-4
|
|
1123
|
+
.pb-4{
|
|
1045
1124
|
padding-bottom: 1rem;
|
|
1046
1125
|
}
|
|
1047
1126
|
|
|
1048
|
-
.pt-8
|
|
1127
|
+
.pt-8{
|
|
1049
1128
|
padding-top: 2rem;
|
|
1050
1129
|
}
|
|
1051
1130
|
|
|
1052
|
-
.pr-8
|
|
1131
|
+
.pr-8{
|
|
1053
1132
|
padding-right: 2rem;
|
|
1054
1133
|
}
|
|
1055
1134
|
|
|
1056
|
-
.pb-0
|
|
1135
|
+
.pb-0{
|
|
1057
1136
|
padding-bottom: 0px;
|
|
1058
1137
|
}
|
|
1059
1138
|
|
|
1060
|
-
.pb-1\.5
|
|
1139
|
+
.pb-1\.5{
|
|
1061
1140
|
padding-bottom: 0.375rem;
|
|
1062
1141
|
}
|
|
1063
1142
|
|
|
1064
|
-
.pb-1
|
|
1143
|
+
.pb-1{
|
|
1065
1144
|
padding-bottom: 0.25rem;
|
|
1066
1145
|
}
|
|
1067
1146
|
|
|
1068
|
-
.
|
|
1069
|
-
padding-
|
|
1147
|
+
.pl-\[34px\]{
|
|
1148
|
+
padding-left: 34px;
|
|
1070
1149
|
}
|
|
1071
1150
|
|
|
1072
|
-
.
|
|
1073
|
-
padding-bottom: 11px;
|
|
1074
|
-
}
|
|
1075
|
-
|
|
1076
|
-
.text-left {
|
|
1151
|
+
.text-left{
|
|
1077
1152
|
text-align: left;
|
|
1078
1153
|
}
|
|
1079
1154
|
|
|
1080
|
-
.text-center
|
|
1155
|
+
.text-center{
|
|
1081
1156
|
text-align: center;
|
|
1082
1157
|
}
|
|
1083
1158
|
|
|
1084
|
-
.align-bottom
|
|
1159
|
+
.align-bottom{
|
|
1085
1160
|
vertical-align: bottom;
|
|
1086
1161
|
}
|
|
1087
1162
|
|
|
1088
|
-
.text-sm
|
|
1163
|
+
.text-sm{
|
|
1089
1164
|
font-size: 0.875rem;
|
|
1090
1165
|
}
|
|
1091
1166
|
|
|
1092
|
-
.text-xs
|
|
1167
|
+
.text-xs{
|
|
1093
1168
|
font-size: 0.75rem;
|
|
1094
1169
|
}
|
|
1095
1170
|
|
|
1096
|
-
.text-base
|
|
1171
|
+
.text-base{
|
|
1097
1172
|
font-size: 1rem;
|
|
1098
1173
|
}
|
|
1099
1174
|
|
|
1100
|
-
.
|
|
1175
|
+
.text-\[0\.8rem\]{
|
|
1176
|
+
font-size: 0.8rem;
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1179
|
+
.text-\[16px\]{
|
|
1180
|
+
font-size: 16px;
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
.italic{
|
|
1184
|
+
font-style: italic;
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
.leading-normal{
|
|
1101
1188
|
line-height: 1.5;
|
|
1102
1189
|
}
|
|
1103
1190
|
|
|
1104
|
-
.leading
|
|
1191
|
+
.leading-\[28px\]{
|
|
1192
|
+
line-height: 28px;
|
|
1193
|
+
}
|
|
1194
|
+
|
|
1195
|
+
.leading-5{
|
|
1196
|
+
line-height: 1.25rem;
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
.leading-none{
|
|
1105
1200
|
line-height: 1;
|
|
1106
1201
|
}
|
|
1107
1202
|
|
|
1108
|
-
.text-white
|
|
1203
|
+
.text-white{
|
|
1109
1204
|
--tw-text-opacity: 1;
|
|
1110
1205
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1111
1206
|
}
|
|
1112
1207
|
|
|
1113
|
-
.text-pzh-blue
|
|
1208
|
+
.text-pzh-blue{
|
|
1114
1209
|
--tw-text-opacity: 1;
|
|
1115
1210
|
color: rgb(40 31 107 / var(--tw-text-opacity));
|
|
1116
1211
|
}
|
|
1117
1212
|
|
|
1118
|
-
.text-pzh-blue-dark
|
|
1213
|
+
.text-pzh-blue-dark{
|
|
1119
1214
|
--tw-text-opacity: 1;
|
|
1120
1215
|
color: rgb(22 17 59 / var(--tw-text-opacity));
|
|
1121
1216
|
}
|
|
1122
1217
|
|
|
1123
|
-
.text-
|
|
1218
|
+
.text-pzh-red{
|
|
1219
|
+
--tw-text-opacity: 1;
|
|
1220
|
+
color: rgb(209 31 61 / var(--tw-text-opacity));
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
.text-pzh-green{
|
|
1224
|
+
--tw-text-opacity: 1;
|
|
1225
|
+
color: rgb(0 128 77 / var(--tw-text-opacity));
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
.text-opacity-35{
|
|
1124
1229
|
--tw-text-opacity: 0.35;
|
|
1125
1230
|
}
|
|
1126
1231
|
|
|
1127
|
-
.text-opacity-55
|
|
1232
|
+
.text-opacity-55{
|
|
1128
1233
|
--tw-text-opacity: 0.55;
|
|
1129
1234
|
}
|
|
1130
1235
|
|
|
1131
|
-
.opacity-
|
|
1236
|
+
.text-opacity-50{
|
|
1237
|
+
--tw-text-opacity: 0.5;
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
.underline{
|
|
1241
|
+
-webkit-text-decoration-line: underline;
|
|
1242
|
+
text-decoration-line: underline;
|
|
1243
|
+
}
|
|
1244
|
+
|
|
1245
|
+
.opacity-0{
|
|
1132
1246
|
opacity: 0;
|
|
1133
1247
|
}
|
|
1134
1248
|
|
|
1135
|
-
.opacity-100
|
|
1249
|
+
.opacity-100{
|
|
1136
1250
|
opacity: 1;
|
|
1137
1251
|
}
|
|
1138
1252
|
|
|
1139
|
-
.
|
|
1253
|
+
.opacity-50{
|
|
1254
|
+
opacity: 0.5;
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
.shadow-xl{
|
|
1140
1258
|
--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
|
|
1141
1259
|
--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
|
|
1142
1260
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1143
1261
|
}
|
|
1144
1262
|
|
|
1145
|
-
.drop-shadow
|
|
1263
|
+
.drop-shadow{
|
|
1146
1264
|
--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
1265
|
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
1266
|
}
|
|
1149
1267
|
|
|
1150
|
-
.filter
|
|
1268
|
+
.filter{
|
|
1151
1269
|
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
1270
|
}
|
|
1153
1271
|
|
|
1154
|
-
.transition
|
|
1272
|
+
.transition{
|
|
1155
1273
|
transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
|
|
1156
1274
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1157
1275
|
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 +1277,39 @@ select {
|
|
|
1159
1277
|
transition-duration: 150ms;
|
|
1160
1278
|
}
|
|
1161
1279
|
|
|
1162
|
-
.transition-opacity
|
|
1280
|
+
.transition-opacity{
|
|
1163
1281
|
transition-property: opacity;
|
|
1164
1282
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1165
1283
|
transition-duration: 150ms;
|
|
1166
1284
|
}
|
|
1167
1285
|
|
|
1168
|
-
.transition-all
|
|
1286
|
+
.transition-all{
|
|
1169
1287
|
transition-property: all;
|
|
1170
1288
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1171
1289
|
transition-duration: 150ms;
|
|
1172
1290
|
}
|
|
1173
1291
|
|
|
1174
|
-
.duration-150
|
|
1292
|
+
.duration-150{
|
|
1175
1293
|
transition-duration: 150ms;
|
|
1176
1294
|
}
|
|
1177
1295
|
|
|
1178
|
-
.duration-200
|
|
1296
|
+
.duration-200{
|
|
1179
1297
|
transition-duration: 200ms;
|
|
1180
1298
|
}
|
|
1181
1299
|
|
|
1182
|
-
.duration-300
|
|
1300
|
+
.duration-300{
|
|
1183
1301
|
transition-duration: 300ms;
|
|
1184
1302
|
}
|
|
1185
1303
|
|
|
1186
|
-
.ease-in-out
|
|
1304
|
+
.ease-in-out{
|
|
1187
1305
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1188
1306
|
}
|
|
1189
1307
|
|
|
1190
|
-
.ease-out
|
|
1308
|
+
.ease-out{
|
|
1191
1309
|
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
1192
1310
|
}
|
|
1193
1311
|
|
|
1194
|
-
.ease-in
|
|
1312
|
+
.ease-in{
|
|
1195
1313
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
1196
1314
|
}
|
|
1197
1315
|
|
|
@@ -1246,7 +1364,11 @@ h6,
|
|
|
1246
1364
|
font-weight: 700;
|
|
1247
1365
|
}
|
|
1248
1366
|
|
|
1249
|
-
|
|
1367
|
+
/*
|
|
1368
|
+
* Form elements
|
|
1369
|
+
*/
|
|
1370
|
+
|
|
1371
|
+
.pzh-button{
|
|
1250
1372
|
display: inline-block;
|
|
1251
1373
|
border-radius: 0.25rem;
|
|
1252
1374
|
line-height: 1;
|
|
@@ -1260,7 +1382,7 @@ h6,
|
|
|
1260
1382
|
font-weight: 700;
|
|
1261
1383
|
}
|
|
1262
1384
|
|
|
1263
|
-
.pzh-button:focus
|
|
1385
|
+
.pzh-button:focus{
|
|
1264
1386
|
outline: 2px solid transparent;
|
|
1265
1387
|
outline-offset: 2px;
|
|
1266
1388
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
@@ -1268,7 +1390,7 @@ h6,
|
|
|
1268
1390
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1269
1391
|
}
|
|
1270
1392
|
|
|
1271
|
-
.pzh-button:disabled
|
|
1393
|
+
.pzh-button:disabled{
|
|
1272
1394
|
cursor: not-allowed;
|
|
1273
1395
|
--tw-bg-opacity: 1;
|
|
1274
1396
|
background-color: rgb(235 235 235 / var(--tw-bg-opacity));
|
|
@@ -1276,7 +1398,7 @@ h6,
|
|
|
1276
1398
|
--tw-text-opacity: 0.35;
|
|
1277
1399
|
}
|
|
1278
1400
|
|
|
1279
|
-
.pzh-form-input
|
|
1401
|
+
.pzh-form-input{
|
|
1280
1402
|
display: block;
|
|
1281
1403
|
width: 100%;
|
|
1282
1404
|
-webkit-appearance: none;
|
|
@@ -1286,232 +1408,439 @@ h6,
|
|
|
1286
1408
|
border-width: 1px;
|
|
1287
1409
|
border-color: rgb(22 17 59 / var(--tw-border-opacity));
|
|
1288
1410
|
--tw-border-opacity: 0.35;
|
|
1411
|
+
padding-top: 15px;
|
|
1412
|
+
padding-bottom: 11px;
|
|
1289
1413
|
line-height: 1;
|
|
1290
1414
|
--tw-text-opacity: 1;
|
|
1291
1415
|
color: rgb(22 17 59 / var(--tw-text-opacity));
|
|
1292
1416
|
}
|
|
1293
1417
|
|
|
1294
|
-
.pzh-form-input::-moz-placeholder
|
|
1418
|
+
.pzh-form-input::-moz-placeholder{
|
|
1295
1419
|
color: rgb(22 17 59 / var(--tw-placeholder-opacity));
|
|
1296
1420
|
--tw-placeholder-opacity: 0.55;
|
|
1297
1421
|
}
|
|
1298
1422
|
|
|
1299
|
-
.pzh-form-input:-ms-input-placeholder
|
|
1423
|
+
.pzh-form-input:-ms-input-placeholder{
|
|
1300
1424
|
color: rgb(22 17 59 / var(--tw-placeholder-opacity));
|
|
1301
1425
|
--tw-placeholder-opacity: 0.55;
|
|
1302
1426
|
}
|
|
1303
1427
|
|
|
1304
|
-
.pzh-form-input::placeholder
|
|
1428
|
+
.pzh-form-input::placeholder{
|
|
1305
1429
|
color: rgb(22 17 59 / var(--tw-placeholder-opacity));
|
|
1306
1430
|
--tw-placeholder-opacity: 0.55;
|
|
1307
1431
|
}
|
|
1308
1432
|
|
|
1309
|
-
.pzh-form-input:hover
|
|
1433
|
+
.pzh-form-input:hover{
|
|
1310
1434
|
--tw-border-opacity: 1;
|
|
1311
1435
|
border-color: rgb(160 174 192 / var(--tw-border-opacity));
|
|
1312
1436
|
}
|
|
1313
1437
|
|
|
1314
|
-
.pzh-form-input:focus
|
|
1438
|
+
.pzh-form-input:focus{
|
|
1315
1439
|
--tw-border-opacity: 1;
|
|
1316
|
-
border-color: rgb(
|
|
1440
|
+
border-color: rgb(123 173 222 / var(--tw-border-opacity));
|
|
1317
1441
|
outline: 2px solid transparent;
|
|
1318
1442
|
outline-offset: 2px;
|
|
1319
1443
|
}
|
|
1320
1444
|
|
|
1321
|
-
.pzh-form-input:disabled
|
|
1445
|
+
.pzh-form-input:disabled{
|
|
1446
|
+
border-color: rgb(22 17 59 / var(--tw-border-opacity));
|
|
1447
|
+
--tw-border-opacity: 0.1;
|
|
1322
1448
|
--tw-bg-opacity: 1;
|
|
1323
1449
|
background-color: rgb(235 235 235 / var(--tw-bg-opacity));
|
|
1324
1450
|
--tw-text-opacity: 0.55;
|
|
1325
1451
|
}
|
|
1326
1452
|
|
|
1327
|
-
.
|
|
1453
|
+
.pzh-form-radio:checked + label:before, .pzh-form-radio:not(:checked) + label:before{
|
|
1454
|
+
position: absolute;
|
|
1455
|
+
left: 0px;
|
|
1456
|
+
top: 0px;
|
|
1457
|
+
height: 24px;
|
|
1458
|
+
width: 24px;
|
|
1459
|
+
border-radius: 9999px;
|
|
1460
|
+
border-width: 1px;
|
|
1461
|
+
border-color: rgb(22 17 59 / var(--tw-border-opacity));
|
|
1462
|
+
--tw-border-opacity: 0.35;
|
|
1463
|
+
--tw-bg-opacity: 1;
|
|
1464
|
+
background-color: rgb(244 244 247 / var(--tw-bg-opacity));
|
|
1465
|
+
content: '';
|
|
1466
|
+
}
|
|
1467
|
+
|
|
1468
|
+
.pzh-form-radio:checked + label:after, .pzh-form-radio:not(:checked) + label:after{
|
|
1469
|
+
position: absolute;
|
|
1470
|
+
top: 0.25rem;
|
|
1471
|
+
left: 0.25rem;
|
|
1472
|
+
height: 14px;
|
|
1473
|
+
width: 14px;
|
|
1474
|
+
border-radius: 9999px;
|
|
1475
|
+
--tw-bg-opacity: 1;
|
|
1476
|
+
background-color: rgb(0 128 77 / var(--tw-bg-opacity));
|
|
1477
|
+
transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
|
|
1478
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1479
|
+
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;
|
|
1480
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1481
|
+
transition-duration: 200ms;
|
|
1482
|
+
content: '';
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
.pzh-form-radio:not(:checked) + label:after,
|
|
1486
|
+
.pzh-form-checkbox:not(:checked) + label:after {
|
|
1487
|
+
opacity: 0;
|
|
1488
|
+
transform: scale(0);
|
|
1489
|
+
}
|
|
1490
|
+
|
|
1491
|
+
.pzh-form-radio:checked + label:after,
|
|
1492
|
+
.pzh-form-checkbox:checked + label:after {
|
|
1493
|
+
opacity: 1;
|
|
1494
|
+
transform: scale(1);
|
|
1495
|
+
}
|
|
1496
|
+
|
|
1497
|
+
.pzh-form-radio:disabled + label:before, .pzh-form-checkbox:disabled + label:before{
|
|
1498
|
+
--tw-border-opacity: 1;
|
|
1499
|
+
border-color: rgb(235 235 235 / var(--tw-border-opacity));
|
|
1500
|
+
--tw-bg-opacity: 1;
|
|
1501
|
+
background-color: rgb(235 235 235 / var(--tw-bg-opacity));
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
.pzh-form-checkbox + label:before{
|
|
1505
|
+
position: absolute;
|
|
1506
|
+
left: 0px;
|
|
1507
|
+
top: 0px;
|
|
1508
|
+
height: 24px;
|
|
1509
|
+
width: 24px;
|
|
1510
|
+
border-radius: 4px;
|
|
1511
|
+
border-width: 1px;
|
|
1512
|
+
border-color: rgb(22 17 59 / var(--tw-border-opacity));
|
|
1513
|
+
--tw-border-opacity: 0.35;
|
|
1514
|
+
--tw-bg-opacity: 1;
|
|
1515
|
+
background-color: rgb(244 244 247 / var(--tw-bg-opacity));
|
|
1516
|
+
transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
|
|
1517
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1518
|
+
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;
|
|
1519
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1520
|
+
transition-duration: 200ms;
|
|
1521
|
+
content: '';
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1524
|
+
.pzh-form-checkbox:checked:not(:disabled) + label:before{
|
|
1525
|
+
--tw-bg-opacity: 1;
|
|
1526
|
+
background-color: rgb(0 128 77 / var(--tw-bg-opacity));
|
|
1527
|
+
}
|
|
1528
|
+
|
|
1529
|
+
.pzh-form-checkbox:checked + label:after, .pzh-form-checkbox:not(:checked) + label:after{
|
|
1530
|
+
position: absolute;
|
|
1531
|
+
top: 2px;
|
|
1532
|
+
left: 0.25rem;
|
|
1533
|
+
height: 14px;
|
|
1534
|
+
width: 14px;
|
|
1535
|
+
--tw-text-opacity: 1;
|
|
1536
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1537
|
+
transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
|
|
1538
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1539
|
+
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;
|
|
1540
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1541
|
+
transition-duration: 200ms;
|
|
1542
|
+
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>");
|
|
1543
|
+
}
|
|
1544
|
+
|
|
1545
|
+
.pzh-form-checkbox:checked:disabled + label:after {
|
|
1546
|
+
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>");
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1549
|
+
/*
|
|
1550
|
+
* React Datepicker
|
|
1551
|
+
*/
|
|
1552
|
+
|
|
1553
|
+
.react-datepicker {
|
|
1554
|
+
font-family: 'Karbon Regular', sans-serif;
|
|
1555
|
+
font-weight: 400;
|
|
1556
|
+
font-size: 0.8rem;
|
|
1557
|
+
box-shadow: 0px 18px 60px rgba(0, 0, 0, 0.07),
|
|
1558
|
+
0px 4.02054px 13.4018px rgba(0, 0, 0, 0.0417275),
|
|
1559
|
+
0px 1.19702px 3.99006px rgba(0, 0, 0, 0.0282725);
|
|
1560
|
+
border-style: none;
|
|
1561
|
+
--tw-text-opacity: 1;
|
|
1562
|
+
color: rgb(22 17 59 / var(--tw-text-opacity));
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
.react-datepicker__triangle {
|
|
1566
|
+
display: none;
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
.react-datepicker__header{
|
|
1570
|
+
border-style: none;
|
|
1571
|
+
--tw-bg-opacity: 1;
|
|
1572
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1573
|
+
}
|
|
1574
|
+
|
|
1575
|
+
.react-datepicker__month{
|
|
1576
|
+
margin-left: 0.125rem;
|
|
1577
|
+
margin-right: 0.125rem;
|
|
1578
|
+
margin-top: 0px;
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
.react-datepicker__day-names{
|
|
1582
|
+
background-color: rgb(22 17 59 / var(--tw-bg-opacity));
|
|
1583
|
+
--tw-bg-opacity: 0.1;
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1586
|
+
.react-datepicker__day-name{
|
|
1587
|
+
margin-top: 0px;
|
|
1588
|
+
margin-bottom: 0px;
|
|
1589
|
+
line-height: 26px;
|
|
1590
|
+
font-weight: 700;
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
.react-datepicker__current-month{
|
|
1594
|
+
margin-bottom: 0.5rem;
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1597
|
+
.react-datepicker__day--outside-month:not(.react-datepicker__day--selected){
|
|
1598
|
+
color: rgb(22 17 59 / var(--tw-text-opacity));
|
|
1599
|
+
--tw-text-opacity: 0.35;
|
|
1600
|
+
}
|
|
1601
|
+
|
|
1602
|
+
.react-datepicker__day-name, .react-datepicker__day, .react-datepicker__time-name{
|
|
1603
|
+
margin-left: 0.5rem;
|
|
1604
|
+
margin-right: 0.5rem;
|
|
1605
|
+
margin-top: 0.25rem;
|
|
1606
|
+
margin-bottom: 0.25rem;
|
|
1607
|
+
height: 26px;
|
|
1608
|
+
width: 26px;
|
|
1609
|
+
line-height: 28px;
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
.react-datepicker__day{
|
|
1613
|
+
border-radius: 9999px;
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
.react-datepicker__day:hover{
|
|
1617
|
+
border-radius: 9999px;
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1620
|
+
.react-datepicker__day--today, .react-datepicker__day--today:hover, .react-datepicker__day--keyboard-selected{
|
|
1621
|
+
background-color: rgb(22 17 59 / var(--tw-bg-opacity));
|
|
1622
|
+
--tw-bg-opacity: 0.1;
|
|
1623
|
+
--tw-text-opacity: 1;
|
|
1624
|
+
color: rgb(22 17 59 / var(--tw-text-opacity));
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
.react-datepicker__day--selected, .react-datepicker__day--selected:hover{
|
|
1628
|
+
--tw-bg-opacity: 1;
|
|
1629
|
+
background-color: rgb(0 128 77 / var(--tw-bg-opacity));
|
|
1630
|
+
font-weight: 700;
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
.react-datepicker__year-read-view--down-arrow, .react-datepicker__month-read-view--down-arrow, .react-datepicker__month-year-read-view--down-arrow, .react-datepicker__navigation-icon::before{
|
|
1634
|
+
height: 7px;
|
|
1635
|
+
width: 7px;
|
|
1636
|
+
border-width: 0px;
|
|
1637
|
+
border-top-width: 1px;
|
|
1638
|
+
border-right-width: 1px;
|
|
1639
|
+
--tw-border-opacity: 1;
|
|
1640
|
+
border-color: rgb(0 0 0 / var(--tw-border-opacity));
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1643
|
+
.react-datepicker__navigation-icon{
|
|
1644
|
+
line-height: 14px;
|
|
1645
|
+
}
|
|
1646
|
+
|
|
1647
|
+
.hover\:translate-y-0:hover{
|
|
1328
1648
|
--tw-translate-y: 0px;
|
|
1329
1649
|
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
1650
|
}
|
|
1331
1651
|
|
|
1332
|
-
.hover\:border-
|
|
1652
|
+
.hover\:border-pzh-blue-dark:hover{
|
|
1333
1653
|
--tw-border-opacity: 1;
|
|
1654
|
+
border-color: rgb(22 17 59 / var(--tw-border-opacity));
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
.hover\:border-opacity-100:hover{
|
|
1658
|
+
--tw-border-opacity: 1;
|
|
1659
|
+
}
|
|
1660
|
+
|
|
1661
|
+
.hover\:border-opacity-35:hover{
|
|
1662
|
+
--tw-border-opacity: 0.35;
|
|
1334
1663
|
}
|
|
1335
1664
|
|
|
1336
|
-
.hover\:bg-white:hover
|
|
1665
|
+
.hover\:bg-white:hover{
|
|
1337
1666
|
--tw-bg-opacity: 1;
|
|
1338
1667
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1339
1668
|
}
|
|
1340
1669
|
|
|
1341
|
-
.hover\:bg-pzh-blue-dark:hover
|
|
1670
|
+
.hover\:bg-pzh-blue-dark:hover{
|
|
1342
1671
|
--tw-bg-opacity: 1;
|
|
1343
1672
|
background-color: rgb(22 17 59 / var(--tw-bg-opacity));
|
|
1344
1673
|
}
|
|
1345
1674
|
|
|
1346
|
-
.hover\:bg-pzh-green-dark:hover
|
|
1675
|
+
.hover\:bg-pzh-green-dark:hover{
|
|
1347
1676
|
--tw-bg-opacity: 1;
|
|
1348
1677
|
background-color: rgb(0 77 46 / var(--tw-bg-opacity));
|
|
1349
1678
|
}
|
|
1350
1679
|
|
|
1351
|
-
.hover\:bg-opacity-10:hover
|
|
1680
|
+
.hover\:bg-opacity-10:hover{
|
|
1352
1681
|
--tw-bg-opacity: 0.1;
|
|
1353
1682
|
}
|
|
1354
1683
|
|
|
1355
|
-
.hover\:text-pzh-blue:hover
|
|
1684
|
+
.hover\:text-pzh-blue:hover{
|
|
1356
1685
|
--tw-text-opacity: 1;
|
|
1357
1686
|
color: rgb(40 31 107 / var(--tw-text-opacity));
|
|
1358
1687
|
}
|
|
1359
1688
|
|
|
1360
|
-
.hover\:text-white:hover
|
|
1689
|
+
.hover\:text-white:hover{
|
|
1361
1690
|
--tw-text-opacity: 1;
|
|
1362
1691
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1363
1692
|
}
|
|
1364
1693
|
|
|
1365
|
-
.hover\:text-pzh-green:hover
|
|
1694
|
+
.hover\:text-pzh-green:hover{
|
|
1366
1695
|
--tw-text-opacity: 1;
|
|
1367
1696
|
color: rgb(0 128 77 / var(--tw-text-opacity));
|
|
1368
1697
|
}
|
|
1369
1698
|
|
|
1370
|
-
.hover\:underline:hover
|
|
1699
|
+
.hover\:underline:hover{
|
|
1371
1700
|
-webkit-text-decoration-line: underline;
|
|
1372
1701
|
text-decoration-line: underline;
|
|
1373
1702
|
}
|
|
1374
1703
|
|
|
1375
|
-
.focus\:bg-pzh-blue:focus
|
|
1704
|
+
.focus\:bg-pzh-blue:focus{
|
|
1376
1705
|
--tw-bg-opacity: 1;
|
|
1377
1706
|
background-color: rgb(40 31 107 / var(--tw-bg-opacity));
|
|
1378
1707
|
}
|
|
1379
1708
|
|
|
1380
|
-
.focus\:text-white:focus
|
|
1709
|
+
.focus\:text-white:focus{
|
|
1381
1710
|
--tw-text-opacity: 1;
|
|
1382
1711
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1383
1712
|
}
|
|
1384
1713
|
|
|
1385
|
-
.focus\:outline-none:focus
|
|
1714
|
+
.focus\:outline-none:focus{
|
|
1386
1715
|
outline: 2px solid transparent;
|
|
1387
1716
|
outline-offset: 2px;
|
|
1388
1717
|
}
|
|
1389
1718
|
|
|
1390
|
-
.focus\:ring-2:focus
|
|
1719
|
+
.focus\:ring-2:focus{
|
|
1391
1720
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1392
1721
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1393
1722
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1394
1723
|
}
|
|
1395
1724
|
|
|
1396
|
-
.focus\:ring-indigo-500:focus
|
|
1725
|
+
.focus\:ring-indigo-500:focus{
|
|
1397
1726
|
--tw-ring-opacity: 1;
|
|
1398
1727
|
--tw-ring-color: rgb(102 126 234 / var(--tw-ring-opacity));
|
|
1399
1728
|
}
|
|
1400
1729
|
|
|
1401
|
-
.focus\:ring-offset-2:focus
|
|
1730
|
+
.focus\:ring-offset-2:focus{
|
|
1402
1731
|
--tw-ring-offset-width: 2px;
|
|
1403
1732
|
}
|
|
1404
1733
|
|
|
1405
|
-
@media (min-width: 640px)
|
|
1406
|
-
.sm\:my-8
|
|
1734
|
+
@media (min-width: 640px){
|
|
1735
|
+
.sm\:my-8{
|
|
1407
1736
|
margin-top: 2rem;
|
|
1408
1737
|
margin-bottom: 2rem;
|
|
1409
1738
|
}
|
|
1410
1739
|
|
|
1411
|
-
.sm\:mt-8
|
|
1740
|
+
.sm\:mt-8{
|
|
1412
1741
|
margin-top: 2rem;
|
|
1413
1742
|
}
|
|
1414
1743
|
|
|
1415
|
-
.sm\:-mt-2
|
|
1744
|
+
.sm\:-mt-2{
|
|
1416
1745
|
margin-top: -0.5rem;
|
|
1417
1746
|
}
|
|
1418
1747
|
|
|
1419
|
-
.sm\:-mr-2
|
|
1748
|
+
.sm\:-mr-2{
|
|
1420
1749
|
margin-right: -0.5rem;
|
|
1421
1750
|
}
|
|
1422
1751
|
|
|
1423
|
-
.sm\:block
|
|
1752
|
+
.sm\:block{
|
|
1424
1753
|
display: block;
|
|
1425
1754
|
}
|
|
1426
1755
|
|
|
1427
|
-
.sm\:inline-block
|
|
1756
|
+
.sm\:inline-block{
|
|
1428
1757
|
display: inline-block;
|
|
1429
1758
|
}
|
|
1430
1759
|
|
|
1431
|
-
.sm\:h-screen
|
|
1760
|
+
.sm\:h-screen{
|
|
1432
1761
|
height: 100vh;
|
|
1433
1762
|
}
|
|
1434
1763
|
|
|
1435
|
-
.sm\:w-full
|
|
1764
|
+
.sm\:w-full{
|
|
1436
1765
|
width: 100%;
|
|
1437
1766
|
}
|
|
1438
1767
|
|
|
1439
|
-
.sm\:translate-y-0
|
|
1768
|
+
.sm\:translate-y-0{
|
|
1440
1769
|
--tw-translate-y: 0px;
|
|
1441
1770
|
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
1771
|
}
|
|
1443
1772
|
|
|
1444
|
-
.sm\:scale-95
|
|
1773
|
+
.sm\:scale-95{
|
|
1445
1774
|
--tw-scale-x: .95;
|
|
1446
1775
|
--tw-scale-y: .95;
|
|
1447
1776
|
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
1777
|
}
|
|
1449
1778
|
|
|
1450
|
-
.sm\:scale-100
|
|
1779
|
+
.sm\:scale-100{
|
|
1451
1780
|
--tw-scale-x: 1;
|
|
1452
1781
|
--tw-scale-y: 1;
|
|
1453
1782
|
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
1783
|
}
|
|
1455
1784
|
|
|
1456
|
-
.sm\:items-start
|
|
1785
|
+
.sm\:items-start{
|
|
1457
1786
|
align-items: flex-start;
|
|
1458
1787
|
}
|
|
1459
1788
|
|
|
1460
|
-
.sm\:p-8
|
|
1789
|
+
.sm\:p-8{
|
|
1461
1790
|
padding: 2rem;
|
|
1462
1791
|
}
|
|
1463
1792
|
|
|
1464
|
-
.sm\:p-2
|
|
1793
|
+
.sm\:p-2{
|
|
1465
1794
|
padding: 0.5rem;
|
|
1466
1795
|
}
|
|
1467
1796
|
|
|
1468
|
-
.sm\:px-6
|
|
1797
|
+
.sm\:px-6{
|
|
1469
1798
|
padding-left: 1.5rem;
|
|
1470
1799
|
padding-right: 1.5rem;
|
|
1471
1800
|
}
|
|
1472
1801
|
|
|
1473
|
-
.sm\:py-10
|
|
1802
|
+
.sm\:py-10{
|
|
1474
1803
|
padding-top: 2.5rem;
|
|
1475
1804
|
padding-bottom: 2.5rem;
|
|
1476
1805
|
}
|
|
1477
1806
|
|
|
1478
|
-
.sm\:pt-1
|
|
1807
|
+
.sm\:pt-1{
|
|
1479
1808
|
padding-top: 0.25rem;
|
|
1480
1809
|
}
|
|
1481
1810
|
|
|
1482
|
-
.sm\:pr-2
|
|
1811
|
+
.sm\:pr-2{
|
|
1483
1812
|
padding-right: 0.5rem;
|
|
1484
1813
|
}
|
|
1485
1814
|
|
|
1486
|
-
.sm\:text-center
|
|
1815
|
+
.sm\:text-center{
|
|
1487
1816
|
text-align: center;
|
|
1488
1817
|
}
|
|
1489
1818
|
|
|
1490
|
-
.sm\:align-middle
|
|
1819
|
+
.sm\:align-middle{
|
|
1491
1820
|
vertical-align: middle;
|
|
1492
1821
|
}
|
|
1493
1822
|
}
|
|
1494
1823
|
|
|
1495
|
-
@media (min-width: 768px)
|
|
1496
|
-
.md\:ml-4
|
|
1824
|
+
@media (min-width: 768px){
|
|
1825
|
+
.md\:ml-4{
|
|
1497
1826
|
margin-left: 1rem;
|
|
1498
1827
|
}
|
|
1499
1828
|
|
|
1500
|
-
.md\:p-4
|
|
1829
|
+
.md\:p-4{
|
|
1501
1830
|
padding: 1rem;
|
|
1502
1831
|
}
|
|
1503
1832
|
|
|
1504
|
-
.md\:pb-4
|
|
1833
|
+
.md\:pb-4{
|
|
1505
1834
|
padding-bottom: 1rem;
|
|
1506
1835
|
}
|
|
1507
1836
|
|
|
1508
|
-
.md\:text-base
|
|
1837
|
+
.md\:text-base{
|
|
1509
1838
|
font-size: 1rem;
|
|
1510
1839
|
}
|
|
1511
1840
|
}
|
|
1512
1841
|
|
|
1513
|
-
@media (min-width: 1024px)
|
|
1514
|
-
.lg\:px-8
|
|
1842
|
+
@media (min-width: 1024px){
|
|
1843
|
+
.lg\:px-8{
|
|
1515
1844
|
padding-left: 2rem;
|
|
1516
1845
|
padding-right: 2rem;
|
|
1517
1846
|
}
|