@erikey/react 0.4.20 → 0.4.21
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/dist/index.d.mts +46 -0
- package/dist/index.mjs +169 -3
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +8 -597
- package/dist/styles.css.map +1 -1
- package/dist/ui/index.mjs +3630 -18895
- package/dist/ui/index.mjs.map +1 -1
- package/package.json +2 -33
package/dist/styles.css
CHANGED
|
@@ -383,9 +383,6 @@ video {
|
|
|
383
383
|
.static {
|
|
384
384
|
position: static;
|
|
385
385
|
}
|
|
386
|
-
.fixed {
|
|
387
|
-
position: fixed;
|
|
388
|
-
}
|
|
389
386
|
.absolute {
|
|
390
387
|
position: absolute;
|
|
391
388
|
}
|
|
@@ -395,36 +392,15 @@ video {
|
|
|
395
392
|
.inset-0 {
|
|
396
393
|
inset: 0px;
|
|
397
394
|
}
|
|
398
|
-
.left-2 {
|
|
399
|
-
left: 0.5rem;
|
|
400
|
-
}
|
|
401
|
-
.left-\[50\%\] {
|
|
402
|
-
left: 50%;
|
|
403
|
-
}
|
|
404
395
|
.right-0 {
|
|
405
396
|
right: 0px;
|
|
406
397
|
}
|
|
407
|
-
.right-2 {
|
|
408
|
-
right: 0.5rem;
|
|
409
|
-
}
|
|
410
|
-
.right-4 {
|
|
411
|
-
right: 1rem;
|
|
412
|
-
}
|
|
413
398
|
.top-0 {
|
|
414
399
|
top: 0px;
|
|
415
400
|
}
|
|
416
401
|
.top-1\/2 {
|
|
417
402
|
top: 50%;
|
|
418
403
|
}
|
|
419
|
-
.top-4 {
|
|
420
|
-
top: 1rem;
|
|
421
|
-
}
|
|
422
|
-
.top-\[50\%\] {
|
|
423
|
-
top: 50%;
|
|
424
|
-
}
|
|
425
|
-
.z-50 {
|
|
426
|
-
z-index: 50;
|
|
427
|
-
}
|
|
428
404
|
.col-start-2 {
|
|
429
405
|
grid-column-start: 2;
|
|
430
406
|
}
|
|
@@ -434,14 +410,6 @@ video {
|
|
|
434
410
|
.row-start-1 {
|
|
435
411
|
grid-row-start: 1;
|
|
436
412
|
}
|
|
437
|
-
.-mx-1 {
|
|
438
|
-
margin-left: -0.25rem;
|
|
439
|
-
margin-right: -0.25rem;
|
|
440
|
-
}
|
|
441
|
-
.-my-1 {
|
|
442
|
-
margin-top: -0.25rem;
|
|
443
|
-
margin-bottom: -0.25rem;
|
|
444
|
-
}
|
|
445
413
|
.-my-2 {
|
|
446
414
|
margin-top: -0.5rem;
|
|
447
415
|
margin-bottom: -0.5rem;
|
|
@@ -458,18 +426,6 @@ video {
|
|
|
458
426
|
margin-top: 0px;
|
|
459
427
|
margin-bottom: 0px;
|
|
460
428
|
}
|
|
461
|
-
.my-0\.5 {
|
|
462
|
-
margin-top: 0.125rem;
|
|
463
|
-
margin-bottom: 0.125rem;
|
|
464
|
-
}
|
|
465
|
-
.my-1 {
|
|
466
|
-
margin-top: 0.25rem;
|
|
467
|
-
margin-bottom: 0.25rem;
|
|
468
|
-
}
|
|
469
|
-
.my-2 {
|
|
470
|
-
margin-top: 0.5rem;
|
|
471
|
-
margin-bottom: 0.5rem;
|
|
472
|
-
}
|
|
473
429
|
.my-\[26px\] {
|
|
474
430
|
margin-top: 26px;
|
|
475
431
|
margin-bottom: 26px;
|
|
@@ -486,45 +442,21 @@ video {
|
|
|
486
442
|
margin-top: auto;
|
|
487
443
|
margin-bottom: auto;
|
|
488
444
|
}
|
|
489
|
-
.mb-0\.5 {
|
|
490
|
-
margin-bottom: 0.125rem;
|
|
491
|
-
}
|
|
492
445
|
.mb-3 {
|
|
493
446
|
margin-bottom: 0.75rem;
|
|
494
447
|
}
|
|
495
448
|
.mb-\[32px\] {
|
|
496
449
|
margin-bottom: 32px;
|
|
497
450
|
}
|
|
498
|
-
.me-6 {
|
|
499
|
-
margin-inline-end: 1.5rem;
|
|
500
|
-
}
|
|
501
451
|
.ml-1 {
|
|
502
452
|
margin-left: 0.25rem;
|
|
503
453
|
}
|
|
504
454
|
.ml-4 {
|
|
505
455
|
margin-left: 1rem;
|
|
506
456
|
}
|
|
507
|
-
.ml-auto {
|
|
508
|
-
margin-left: auto;
|
|
509
|
-
}
|
|
510
|
-
.ms-auto {
|
|
511
|
-
margin-inline-start: auto;
|
|
512
|
-
}
|
|
513
|
-
.mt-0\.5 {
|
|
514
|
-
margin-top: 0.125rem;
|
|
515
|
-
}
|
|
516
|
-
.mt-1\.5 {
|
|
517
|
-
margin-top: 0.375rem;
|
|
518
|
-
}
|
|
519
|
-
.mt-4 {
|
|
520
|
-
margin-top: 1rem;
|
|
521
|
-
}
|
|
522
457
|
.mt-\[32px\] {
|
|
523
458
|
margin-top: 32px;
|
|
524
459
|
}
|
|
525
|
-
.mt-auto {
|
|
526
|
-
margin-top: auto;
|
|
527
|
-
}
|
|
528
460
|
.line-clamp-1 {
|
|
529
461
|
overflow: hidden;
|
|
530
462
|
display: -webkit-box;
|
|
@@ -552,10 +484,6 @@ video {
|
|
|
552
484
|
.aspect-square {
|
|
553
485
|
aspect-ratio: 1 / 1;
|
|
554
486
|
}
|
|
555
|
-
.\!size-8 {
|
|
556
|
-
width: 2rem !important;
|
|
557
|
-
height: 2rem !important;
|
|
558
|
-
}
|
|
559
487
|
.size-10 {
|
|
560
488
|
width: 2.5rem;
|
|
561
489
|
height: 2.5rem;
|
|
@@ -568,14 +496,6 @@ video {
|
|
|
568
496
|
width: 4rem;
|
|
569
497
|
height: 4rem;
|
|
570
498
|
}
|
|
571
|
-
.size-2 {
|
|
572
|
-
width: 0.5rem;
|
|
573
|
-
height: 0.5rem;
|
|
574
|
-
}
|
|
575
|
-
.size-20 {
|
|
576
|
-
width: 5rem;
|
|
577
|
-
height: 5rem;
|
|
578
|
-
}
|
|
579
499
|
.size-3 {
|
|
580
500
|
width: 0.75rem;
|
|
581
501
|
height: 0.75rem;
|
|
@@ -588,10 +508,6 @@ video {
|
|
|
588
508
|
width: 1rem;
|
|
589
509
|
height: 1rem;
|
|
590
510
|
}
|
|
591
|
-
.size-5 {
|
|
592
|
-
width: 1.25rem;
|
|
593
|
-
height: 1.25rem;
|
|
594
|
-
}
|
|
595
511
|
.size-6 {
|
|
596
512
|
width: 1.5rem;
|
|
597
513
|
height: 1.5rem;
|
|
@@ -614,22 +530,9 @@ video {
|
|
|
614
530
|
height: -moz-fit-content;
|
|
615
531
|
height: fit-content;
|
|
616
532
|
}
|
|
617
|
-
.size-full {
|
|
618
|
-
width: 100%;
|
|
619
|
-
height: 100%;
|
|
620
|
-
}
|
|
621
533
|
.h-10 {
|
|
622
534
|
height: 2.5rem;
|
|
623
535
|
}
|
|
624
|
-
.h-2 {
|
|
625
|
-
height: 0.5rem;
|
|
626
|
-
}
|
|
627
|
-
.h-3 {
|
|
628
|
-
height: 0.75rem;
|
|
629
|
-
}
|
|
630
|
-
.h-3\.5 {
|
|
631
|
-
height: 0.875rem;
|
|
632
|
-
}
|
|
633
536
|
.h-4 {
|
|
634
537
|
height: 1rem;
|
|
635
538
|
}
|
|
@@ -645,21 +548,8 @@ video {
|
|
|
645
548
|
.h-\[76px\] {
|
|
646
549
|
height: 76px;
|
|
647
550
|
}
|
|
648
|
-
.h
|
|
649
|
-
height:
|
|
650
|
-
}
|
|
651
|
-
.h-\[var\(--radix-select-trigger-height\)\] {
|
|
652
|
-
height: var(--radix-select-trigger-height);
|
|
653
|
-
}
|
|
654
|
-
.h-auto {
|
|
655
|
-
height: auto;
|
|
656
|
-
}
|
|
657
|
-
.h-fit {
|
|
658
|
-
height: -moz-fit-content;
|
|
659
|
-
height: fit-content;
|
|
660
|
-
}
|
|
661
|
-
.h-px {
|
|
662
|
-
height: 1px;
|
|
551
|
+
.h-full {
|
|
552
|
+
height: 100%;
|
|
663
553
|
}
|
|
664
554
|
.min-h-16 {
|
|
665
555
|
min-height: 4rem;
|
|
@@ -670,48 +560,9 @@ video {
|
|
|
670
560
|
.\!w-auto {
|
|
671
561
|
width: auto !important;
|
|
672
562
|
}
|
|
673
|
-
.w-1\/3 {
|
|
674
|
-
width: 33.333333%;
|
|
675
|
-
}
|
|
676
|
-
.w-12 {
|
|
677
|
-
width: 3rem;
|
|
678
|
-
}
|
|
679
|
-
.w-14 {
|
|
680
|
-
width: 3.5rem;
|
|
681
|
-
}
|
|
682
|
-
.w-16 {
|
|
683
|
-
width: 4rem;
|
|
684
|
-
}
|
|
685
|
-
.w-2\/3 {
|
|
686
|
-
width: 66.666667%;
|
|
687
|
-
}
|
|
688
|
-
.w-24 {
|
|
689
|
-
width: 6rem;
|
|
690
|
-
}
|
|
691
|
-
.w-28 {
|
|
692
|
-
width: 7rem;
|
|
693
|
-
}
|
|
694
|
-
.w-32 {
|
|
695
|
-
width: 8rem;
|
|
696
|
-
}
|
|
697
|
-
.w-40 {
|
|
698
|
-
width: 10rem;
|
|
699
|
-
}
|
|
700
|
-
.w-48 {
|
|
701
|
-
width: 12rem;
|
|
702
|
-
}
|
|
703
563
|
.w-9 {
|
|
704
564
|
width: 2.25rem;
|
|
705
565
|
}
|
|
706
|
-
.w-\[--radix-dropdown-menu-trigger-width\] {
|
|
707
|
-
width: var(--radix-dropdown-menu-trigger-width);
|
|
708
|
-
}
|
|
709
|
-
.w-\[--radix-select-trigger-width\] {
|
|
710
|
-
width: var(--radix-select-trigger-width);
|
|
711
|
-
}
|
|
712
|
-
.w-\[100px\] {
|
|
713
|
-
width: 100px;
|
|
714
|
-
}
|
|
715
566
|
.w-\[302px\] {
|
|
716
567
|
width: 302px;
|
|
717
568
|
}
|
|
@@ -728,36 +579,9 @@ video {
|
|
|
728
579
|
.min-w-0 {
|
|
729
580
|
min-width: 0px;
|
|
730
581
|
}
|
|
731
|
-
.min-w-56 {
|
|
732
|
-
min-width: 14rem;
|
|
733
|
-
}
|
|
734
|
-
.min-w-\[8rem\] {
|
|
735
|
-
min-width: 8rem;
|
|
736
|
-
}
|
|
737
|
-
.min-w-\[var\(--radix-select-trigger-width\)\] {
|
|
738
|
-
min-width: var(--radix-select-trigger-width);
|
|
739
|
-
}
|
|
740
|
-
.max-w-14 {
|
|
741
|
-
max-width: 3.5rem;
|
|
742
|
-
}
|
|
743
|
-
.max-w-32 {
|
|
744
|
-
max-width: 8rem;
|
|
745
|
-
}
|
|
746
|
-
.max-w-56 {
|
|
747
|
-
max-width: 14rem;
|
|
748
|
-
}
|
|
749
|
-
.max-w-64 {
|
|
750
|
-
max-width: 16rem;
|
|
751
|
-
}
|
|
752
582
|
.max-w-\[465px\] {
|
|
753
583
|
max-width: 465px;
|
|
754
584
|
}
|
|
755
|
-
.max-w-\[calc\(100\%-2rem\)\] {
|
|
756
|
-
max-width: calc(100% - 2rem);
|
|
757
|
-
}
|
|
758
|
-
.max-w-full {
|
|
759
|
-
max-width: 100%;
|
|
760
|
-
}
|
|
761
585
|
.max-w-sm {
|
|
762
586
|
max-width: 24rem;
|
|
763
587
|
}
|
|
@@ -773,14 +597,6 @@ video {
|
|
|
773
597
|
.grow {
|
|
774
598
|
flex-grow: 1;
|
|
775
599
|
}
|
|
776
|
-
.translate-x-\[-50\%\] {
|
|
777
|
-
--tw-translate-x: -50%;
|
|
778
|
-
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));
|
|
779
|
-
}
|
|
780
|
-
.translate-y-\[-50\%\] {
|
|
781
|
-
--tw-translate-y: -50%;
|
|
782
|
-
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));
|
|
783
|
-
}
|
|
784
600
|
@keyframes pulse {
|
|
785
601
|
50% {
|
|
786
602
|
opacity: .5;
|
|
@@ -797,18 +613,11 @@ video {
|
|
|
797
613
|
.animate-spin {
|
|
798
614
|
animation: spin 1s linear infinite;
|
|
799
615
|
}
|
|
800
|
-
.cursor-default {
|
|
801
|
-
cursor: default;
|
|
802
|
-
}
|
|
803
616
|
.select-none {
|
|
804
617
|
-webkit-user-select: none;
|
|
805
618
|
-moz-user-select: none;
|
|
806
619
|
user-select: none;
|
|
807
620
|
}
|
|
808
|
-
.scroll-my-1 {
|
|
809
|
-
scroll-margin-top: 0.25rem;
|
|
810
|
-
scroll-margin-bottom: 0.25rem;
|
|
811
|
-
}
|
|
812
621
|
.list-disc {
|
|
813
622
|
list-style-type: disc;
|
|
814
623
|
}
|
|
@@ -830,9 +639,6 @@ video {
|
|
|
830
639
|
.flex-col {
|
|
831
640
|
flex-direction: column;
|
|
832
641
|
}
|
|
833
|
-
.flex-col-reverse {
|
|
834
|
-
flex-direction: column-reverse;
|
|
835
|
-
}
|
|
836
642
|
.flex-wrap {
|
|
837
643
|
flex-wrap: wrap;
|
|
838
644
|
}
|
|
@@ -842,9 +648,6 @@ video {
|
|
|
842
648
|
.items-center {
|
|
843
649
|
align-items: center;
|
|
844
650
|
}
|
|
845
|
-
.justify-start {
|
|
846
|
-
justify-content: flex-start;
|
|
847
|
-
}
|
|
848
651
|
.justify-center {
|
|
849
652
|
justify-content: center;
|
|
850
653
|
}
|
|
@@ -854,12 +657,6 @@ video {
|
|
|
854
657
|
.justify-items-start {
|
|
855
658
|
justify-items: start;
|
|
856
659
|
}
|
|
857
|
-
.justify-items-center {
|
|
858
|
-
justify-items: center;
|
|
859
|
-
}
|
|
860
|
-
.gap-0\.5 {
|
|
861
|
-
gap: 0.125rem;
|
|
862
|
-
}
|
|
863
660
|
.gap-1 {
|
|
864
661
|
gap: 0.25rem;
|
|
865
662
|
}
|
|
@@ -889,11 +686,6 @@ video {
|
|
|
889
686
|
margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
|
|
890
687
|
margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
|
|
891
688
|
}
|
|
892
|
-
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
|
|
893
|
-
--tw-space-y-reverse: 0;
|
|
894
|
-
margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
895
|
-
margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
|
|
896
|
-
}
|
|
897
689
|
.self-start {
|
|
898
690
|
align-self: flex-start;
|
|
899
691
|
}
|
|
@@ -906,23 +698,9 @@ video {
|
|
|
906
698
|
.overflow-hidden {
|
|
907
699
|
overflow: hidden;
|
|
908
700
|
}
|
|
909
|
-
.overflow-y-auto {
|
|
910
|
-
overflow-y: auto;
|
|
911
|
-
}
|
|
912
|
-
.overflow-x-hidden {
|
|
913
|
-
overflow-x: hidden;
|
|
914
|
-
}
|
|
915
|
-
.truncate {
|
|
916
|
-
overflow: hidden;
|
|
917
|
-
text-overflow: ellipsis;
|
|
918
|
-
white-space: nowrap;
|
|
919
|
-
}
|
|
920
701
|
.whitespace-nowrap {
|
|
921
702
|
white-space: nowrap;
|
|
922
703
|
}
|
|
923
|
-
.break-all {
|
|
924
|
-
word-break: break-all;
|
|
925
|
-
}
|
|
926
704
|
.rounded {
|
|
927
705
|
border-radius: 0.25rem;
|
|
928
706
|
}
|
|
@@ -938,16 +716,9 @@ video {
|
|
|
938
716
|
.rounded-md {
|
|
939
717
|
border-radius: 0.375rem;
|
|
940
718
|
}
|
|
941
|
-
.rounded-sm {
|
|
942
|
-
border-radius: 0.125rem;
|
|
943
|
-
}
|
|
944
719
|
.rounded-xl {
|
|
945
720
|
border-radius: 0.75rem;
|
|
946
721
|
}
|
|
947
|
-
.rounded-b-xl {
|
|
948
|
-
border-bottom-right-radius: 0.75rem;
|
|
949
|
-
border-bottom-left-radius: 0.75rem;
|
|
950
|
-
}
|
|
951
722
|
.border {
|
|
952
723
|
border-width: 1px;
|
|
953
724
|
}
|
|
@@ -967,53 +738,22 @@ video {
|
|
|
967
738
|
.border-solid {
|
|
968
739
|
border-style: solid;
|
|
969
740
|
}
|
|
970
|
-
.border-transparent {
|
|
971
|
-
border-color: transparent;
|
|
972
|
-
}
|
|
973
741
|
.\!bg-transparent {
|
|
974
742
|
background-color: transparent !important;
|
|
975
743
|
}
|
|
976
|
-
.bg-black\/50 {
|
|
977
|
-
background-color: rgb(0 0 0 / 0.5);
|
|
978
|
-
}
|
|
979
744
|
.bg-transparent {
|
|
980
745
|
background-color: transparent;
|
|
981
746
|
}
|
|
982
|
-
.
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
.\!p-2 {
|
|
986
|
-
padding: 0.5rem !important;
|
|
747
|
+
.object-cover {
|
|
748
|
+
-o-object-fit: cover;
|
|
749
|
+
object-fit: cover;
|
|
987
750
|
}
|
|
988
751
|
.p-0 {
|
|
989
752
|
padding: 0px;
|
|
990
753
|
}
|
|
991
|
-
.p-1 {
|
|
992
|
-
padding: 0.25rem;
|
|
993
|
-
}
|
|
994
|
-
.p-2 {
|
|
995
|
-
padding: 0.5rem;
|
|
996
|
-
}
|
|
997
|
-
.p-4 {
|
|
998
|
-
padding: 1rem;
|
|
999
|
-
}
|
|
1000
|
-
.p-6 {
|
|
1001
|
-
padding: 1.5rem;
|
|
1002
|
-
}
|
|
1003
754
|
.p-\[20px\] {
|
|
1004
755
|
padding: 20px;
|
|
1005
756
|
}
|
|
1006
|
-
.p-\[3px\] {
|
|
1007
|
-
padding: 3px;
|
|
1008
|
-
}
|
|
1009
|
-
.\!py-4 {
|
|
1010
|
-
padding-top: 1rem !important;
|
|
1011
|
-
padding-bottom: 1rem !important;
|
|
1012
|
-
}
|
|
1013
|
-
.\!py-5 {
|
|
1014
|
-
padding-top: 1.25rem !important;
|
|
1015
|
-
padding-bottom: 1.25rem !important;
|
|
1016
|
-
}
|
|
1017
757
|
.px-0 {
|
|
1018
758
|
padding-left: 0px;
|
|
1019
759
|
padding-right: 0px;
|
|
@@ -1042,10 +782,6 @@ video {
|
|
|
1042
782
|
padding-top: 0.25rem;
|
|
1043
783
|
padding-bottom: 0.25rem;
|
|
1044
784
|
}
|
|
1045
|
-
.py-1\.5 {
|
|
1046
|
-
padding-top: 0.375rem;
|
|
1047
|
-
padding-bottom: 0.375rem;
|
|
1048
|
-
}
|
|
1049
785
|
.py-2 {
|
|
1050
786
|
padding-top: 0.5rem;
|
|
1051
787
|
padding-bottom: 0.5rem;
|
|
@@ -1054,55 +790,16 @@ video {
|
|
|
1054
790
|
padding-top: 0.75rem;
|
|
1055
791
|
padding-bottom: 0.75rem;
|
|
1056
792
|
}
|
|
1057
|
-
.py-4 {
|
|
1058
|
-
padding-top: 1rem;
|
|
1059
|
-
padding-bottom: 1rem;
|
|
1060
|
-
}
|
|
1061
793
|
.py-6 {
|
|
1062
794
|
padding-top: 1.5rem;
|
|
1063
795
|
padding-bottom: 1.5rem;
|
|
1064
796
|
}
|
|
1065
|
-
.pb-0 {
|
|
1066
|
-
padding-bottom: 0px;
|
|
1067
|
-
}
|
|
1068
|
-
.pb-4 {
|
|
1069
|
-
padding-bottom: 1rem;
|
|
1070
|
-
}
|
|
1071
|
-
.pl-2 {
|
|
1072
|
-
padding-left: 0.5rem;
|
|
1073
|
-
}
|
|
1074
|
-
.pl-8 {
|
|
1075
|
-
padding-left: 2rem;
|
|
1076
|
-
}
|
|
1077
797
|
.pr-10 {
|
|
1078
798
|
padding-right: 2.5rem;
|
|
1079
799
|
}
|
|
1080
|
-
.pr-2 {
|
|
1081
|
-
padding-right: 0.5rem;
|
|
1082
|
-
}
|
|
1083
|
-
.pr-8 {
|
|
1084
|
-
padding-right: 2rem;
|
|
1085
|
-
}
|
|
1086
|
-
.text-left {
|
|
1087
|
-
text-align: left;
|
|
1088
|
-
}
|
|
1089
800
|
.text-center {
|
|
1090
801
|
text-align: center;
|
|
1091
802
|
}
|
|
1092
|
-
.text-start {
|
|
1093
|
-
text-align: start;
|
|
1094
|
-
}
|
|
1095
|
-
.font-mono {
|
|
1096
|
-
font-family:
|
|
1097
|
-
ui-monospace,
|
|
1098
|
-
SFMono-Regular,
|
|
1099
|
-
Menlo,
|
|
1100
|
-
Monaco,
|
|
1101
|
-
Consolas,
|
|
1102
|
-
"Liberation Mono",
|
|
1103
|
-
"Courier New",
|
|
1104
|
-
monospace;
|
|
1105
|
-
}
|
|
1106
803
|
.font-sans {
|
|
1107
804
|
font-family:
|
|
1108
805
|
ui-sans-serif,
|
|
@@ -1113,10 +810,6 @@ video {
|
|
|
1113
810
|
"Segoe UI Symbol",
|
|
1114
811
|
"Noto Color Emoji";
|
|
1115
812
|
}
|
|
1116
|
-
.text-2xl {
|
|
1117
|
-
font-size: 1.5rem;
|
|
1118
|
-
line-height: 2rem;
|
|
1119
|
-
}
|
|
1120
813
|
.text-\[12px\] {
|
|
1121
814
|
font-size: 12px;
|
|
1122
815
|
}
|
|
@@ -1172,15 +865,9 @@ video {
|
|
|
1172
865
|
.leading-snug {
|
|
1173
866
|
line-height: 1.375;
|
|
1174
867
|
}
|
|
1175
|
-
.leading-tight {
|
|
1176
|
-
line-height: 1.25;
|
|
1177
|
-
}
|
|
1178
868
|
.tracking-tight {
|
|
1179
869
|
letter-spacing: -0.025em;
|
|
1180
870
|
}
|
|
1181
|
-
.tracking-widest {
|
|
1182
|
-
letter-spacing: 0.1em;
|
|
1183
|
-
}
|
|
1184
871
|
.text-\[\#666666\] {
|
|
1185
872
|
--tw-text-opacity: 1;
|
|
1186
873
|
color: rgb(102 102 102 / var(--tw-text-opacity, 1));
|
|
@@ -1201,28 +888,6 @@ video {
|
|
|
1201
888
|
.underline-offset-4 {
|
|
1202
889
|
text-underline-offset: 4px;
|
|
1203
890
|
}
|
|
1204
|
-
.opacity-50 {
|
|
1205
|
-
opacity: 0.5;
|
|
1206
|
-
}
|
|
1207
|
-
.opacity-70 {
|
|
1208
|
-
opacity: 0.7;
|
|
1209
|
-
}
|
|
1210
|
-
.shadow-lg {
|
|
1211
|
-
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
1212
|
-
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
1213
|
-
box-shadow:
|
|
1214
|
-
var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
1215
|
-
var(--tw-ring-shadow, 0 0 #0000),
|
|
1216
|
-
var(--tw-shadow);
|
|
1217
|
-
}
|
|
1218
|
-
.shadow-md {
|
|
1219
|
-
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
1220
|
-
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
|
|
1221
|
-
box-shadow:
|
|
1222
|
-
var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
1223
|
-
var(--tw-ring-shadow, 0 0 #0000),
|
|
1224
|
-
var(--tw-shadow);
|
|
1225
|
-
}
|
|
1226
891
|
.shadow-sm {
|
|
1227
892
|
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
1228
893
|
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
|
@@ -1254,11 +919,6 @@ video {
|
|
|
1254
919
|
.transition-none {
|
|
1255
920
|
transition-property: none;
|
|
1256
921
|
}
|
|
1257
|
-
.transition-opacity {
|
|
1258
|
-
transition-property: opacity;
|
|
1259
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1260
|
-
transition-duration: 150ms;
|
|
1261
|
-
}
|
|
1262
922
|
.transition-shadow {
|
|
1263
923
|
transition-property: box-shadow;
|
|
1264
924
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -1267,9 +927,6 @@ video {
|
|
|
1267
927
|
.duration-1000 {
|
|
1268
928
|
transition-duration: 1000ms;
|
|
1269
929
|
}
|
|
1270
|
-
.duration-200 {
|
|
1271
|
-
transition-duration: 200ms;
|
|
1272
|
-
}
|
|
1273
930
|
@keyframes enter {
|
|
1274
931
|
from {
|
|
1275
932
|
opacity: var(--tw-enter-opacity, 1);
|
|
@@ -1285,9 +942,6 @@ video {
|
|
|
1285
942
|
.duration-1000 {
|
|
1286
943
|
animation-duration: 1000ms;
|
|
1287
944
|
}
|
|
1288
|
-
.duration-200 {
|
|
1289
|
-
animation-duration: 200ms;
|
|
1290
|
-
}
|
|
1291
945
|
@keyframes enter {
|
|
1292
946
|
from {
|
|
1293
947
|
opacity: var(--tw-enter-opacity, 1);
|
|
@@ -1436,8 +1090,9 @@ video {
|
|
|
1436
1090
|
.hover\:underline:hover {
|
|
1437
1091
|
text-decoration-line: underline;
|
|
1438
1092
|
}
|
|
1439
|
-
.
|
|
1440
|
-
|
|
1093
|
+
.focus\:outline-none:focus {
|
|
1094
|
+
outline: 2px solid transparent;
|
|
1095
|
+
outline-offset: 2px;
|
|
1441
1096
|
}
|
|
1442
1097
|
.focus\:ring-2:focus {
|
|
1443
1098
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
@@ -1450,9 +1105,6 @@ video {
|
|
|
1450
1105
|
.focus\:ring-offset-2:focus {
|
|
1451
1106
|
--tw-ring-offset-width: 2px;
|
|
1452
1107
|
}
|
|
1453
|
-
.focus-visible\:outline-1:focus-visible {
|
|
1454
|
-
outline-width: 1px;
|
|
1455
|
-
}
|
|
1456
1108
|
.focus-visible\:ring-\[3px\]:focus-visible {
|
|
1457
1109
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1458
1110
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -1519,118 +1171,24 @@ video {
|
|
|
1519
1171
|
.group\/field:has([data-orientation=horizontal]) .group-has-\[\[data-orientation\=horizontal\]\]\/field\:text-balance {
|
|
1520
1172
|
text-wrap: balance;
|
|
1521
1173
|
}
|
|
1522
|
-
.data-\[disabled\]\:pointer-events-none[data-disabled] {
|
|
1523
|
-
pointer-events: none;
|
|
1524
|
-
}
|
|
1525
|
-
.data-\[vaul-drawer-direction\=bottom\]\:inset-x-0[data-vaul-drawer-direction=bottom] {
|
|
1526
|
-
left: 0px;
|
|
1527
|
-
right: 0px;
|
|
1528
|
-
}
|
|
1529
|
-
.data-\[vaul-drawer-direction\=left\]\:inset-y-0[data-vaul-drawer-direction=left] {
|
|
1530
|
-
top: 0px;
|
|
1531
|
-
bottom: 0px;
|
|
1532
|
-
}
|
|
1533
|
-
.data-\[vaul-drawer-direction\=right\]\:inset-y-0[data-vaul-drawer-direction=right] {
|
|
1534
|
-
top: 0px;
|
|
1535
|
-
bottom: 0px;
|
|
1536
|
-
}
|
|
1537
|
-
.data-\[vaul-drawer-direction\=top\]\:inset-x-0[data-vaul-drawer-direction=top] {
|
|
1538
|
-
left: 0px;
|
|
1539
|
-
right: 0px;
|
|
1540
|
-
}
|
|
1541
|
-
.data-\[vaul-drawer-direction\=bottom\]\:bottom-0[data-vaul-drawer-direction=bottom] {
|
|
1542
|
-
bottom: 0px;
|
|
1543
|
-
}
|
|
1544
|
-
.data-\[vaul-drawer-direction\=left\]\:left-0[data-vaul-drawer-direction=left] {
|
|
1545
|
-
left: 0px;
|
|
1546
|
-
}
|
|
1547
|
-
.data-\[vaul-drawer-direction\=right\]\:right-0[data-vaul-drawer-direction=right] {
|
|
1548
|
-
right: 0px;
|
|
1549
|
-
}
|
|
1550
|
-
.data-\[vaul-drawer-direction\=top\]\:top-0[data-vaul-drawer-direction=top] {
|
|
1551
|
-
top: 0px;
|
|
1552
|
-
}
|
|
1553
1174
|
.data-\[active\=true\]\:z-10[data-active=true] {
|
|
1554
1175
|
z-index: 10;
|
|
1555
1176
|
}
|
|
1556
|
-
.data-\[vaul-drawer-direction\=bottom\]\:mt-24[data-vaul-drawer-direction=bottom] {
|
|
1557
|
-
margin-top: 6rem;
|
|
1558
|
-
}
|
|
1559
|
-
.data-\[vaul-drawer-direction\=top\]\:mb-24[data-vaul-drawer-direction=top] {
|
|
1560
|
-
margin-bottom: 6rem;
|
|
1561
|
-
}
|
|
1562
1177
|
.data-\[orientation\=horizontal\]\:h-px[data-orientation=horizontal] {
|
|
1563
1178
|
height: 1px;
|
|
1564
1179
|
}
|
|
1565
1180
|
.data-\[orientation\=vertical\]\:h-full[data-orientation=vertical] {
|
|
1566
1181
|
height: 100%;
|
|
1567
1182
|
}
|
|
1568
|
-
.data-\[size\=default\]\:h-9[data-size=default] {
|
|
1569
|
-
height: 2.25rem;
|
|
1570
|
-
}
|
|
1571
|
-
.data-\[size\=sm\]\:h-8[data-size=sm] {
|
|
1572
|
-
height: 2rem;
|
|
1573
|
-
}
|
|
1574
|
-
.data-\[vaul-drawer-direction\=bottom\]\:max-h-\[80vh\][data-vaul-drawer-direction=bottom] {
|
|
1575
|
-
max-height: 80vh;
|
|
1576
|
-
}
|
|
1577
|
-
.data-\[vaul-drawer-direction\=top\]\:max-h-\[80vh\][data-vaul-drawer-direction=top] {
|
|
1578
|
-
max-height: 80vh;
|
|
1579
|
-
}
|
|
1580
1183
|
.data-\[orientation\=horizontal\]\:w-full[data-orientation=horizontal] {
|
|
1581
1184
|
width: 100%;
|
|
1582
1185
|
}
|
|
1583
1186
|
.data-\[orientation\=vertical\]\:w-px[data-orientation=vertical] {
|
|
1584
1187
|
width: 1px;
|
|
1585
1188
|
}
|
|
1586
|
-
.data-\[vaul-drawer-direction\=left\]\:w-3\/4[data-vaul-drawer-direction=left] {
|
|
1587
|
-
width: 75%;
|
|
1588
|
-
}
|
|
1589
|
-
.data-\[vaul-drawer-direction\=right\]\:w-3\/4[data-vaul-drawer-direction=right] {
|
|
1590
|
-
width: 75%;
|
|
1591
|
-
}
|
|
1592
|
-
.data-\[side\=bottom\]\:translate-y-1[data-side=bottom] {
|
|
1593
|
-
--tw-translate-y: 0.25rem;
|
|
1594
|
-
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));
|
|
1595
|
-
}
|
|
1596
|
-
.data-\[side\=left\]\:-translate-x-1[data-side=left] {
|
|
1597
|
-
--tw-translate-x: -0.25rem;
|
|
1598
|
-
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));
|
|
1599
|
-
}
|
|
1600
|
-
.data-\[side\=right\]\:translate-x-1[data-side=right] {
|
|
1601
|
-
--tw-translate-x: 0.25rem;
|
|
1602
|
-
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));
|
|
1603
|
-
}
|
|
1604
|
-
.data-\[side\=top\]\:-translate-y-1[data-side=top] {
|
|
1605
|
-
--tw-translate-y: -0.25rem;
|
|
1606
|
-
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));
|
|
1607
|
-
}
|
|
1608
1189
|
.data-\[slot\=checkbox-group\]\:gap-3[data-slot=checkbox-group] {
|
|
1609
1190
|
gap: 0.75rem;
|
|
1610
1191
|
}
|
|
1611
|
-
.data-\[vaul-drawer-direction\=bottom\]\:rounded-t-lg[data-vaul-drawer-direction=bottom] {
|
|
1612
|
-
border-top-left-radius: 0.5rem;
|
|
1613
|
-
border-top-right-radius: 0.5rem;
|
|
1614
|
-
}
|
|
1615
|
-
.data-\[vaul-drawer-direction\=top\]\:rounded-b-lg[data-vaul-drawer-direction=top] {
|
|
1616
|
-
border-bottom-right-radius: 0.5rem;
|
|
1617
|
-
border-bottom-left-radius: 0.5rem;
|
|
1618
|
-
}
|
|
1619
|
-
.data-\[vaul-drawer-direction\=bottom\]\:border-t[data-vaul-drawer-direction=bottom] {
|
|
1620
|
-
border-top-width: 1px;
|
|
1621
|
-
}
|
|
1622
|
-
.data-\[vaul-drawer-direction\=left\]\:border-r[data-vaul-drawer-direction=left] {
|
|
1623
|
-
border-right-width: 1px;
|
|
1624
|
-
}
|
|
1625
|
-
.data-\[vaul-drawer-direction\=right\]\:border-l[data-vaul-drawer-direction=right] {
|
|
1626
|
-
border-left-width: 1px;
|
|
1627
|
-
}
|
|
1628
|
-
.data-\[vaul-drawer-direction\=top\]\:border-b[data-vaul-drawer-direction=top] {
|
|
1629
|
-
border-bottom-width: 1px;
|
|
1630
|
-
}
|
|
1631
|
-
.data-\[inset\]\:pl-8[data-inset] {
|
|
1632
|
-
padding-left: 2rem;
|
|
1633
|
-
}
|
|
1634
1192
|
.data-\[variant\=label\]\:text-sm[data-variant=label] {
|
|
1635
1193
|
font-size: 0.875rem;
|
|
1636
1194
|
line-height: 1.25rem;
|
|
@@ -1639,17 +1197,6 @@ video {
|
|
|
1639
1197
|
font-size: 1rem;
|
|
1640
1198
|
line-height: 1.5rem;
|
|
1641
1199
|
}
|
|
1642
|
-
.data-\[disabled\]\:opacity-50[data-disabled] {
|
|
1643
|
-
opacity: 0.5;
|
|
1644
|
-
}
|
|
1645
|
-
.data-\[state\=active\]\:shadow-sm[data-state=active] {
|
|
1646
|
-
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
1647
|
-
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
|
1648
|
-
box-shadow:
|
|
1649
|
-
var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
1650
|
-
var(--tw-ring-shadow, 0 0 #0000),
|
|
1651
|
-
var(--tw-shadow);
|
|
1652
|
-
}
|
|
1653
1200
|
.data-\[active\=true\]\:ring-\[3px\][data-active=true] {
|
|
1654
1201
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1655
1202
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -1658,150 +1205,19 @@ video {
|
|
|
1658
1205
|
var(--tw-ring-shadow),
|
|
1659
1206
|
var(--tw-shadow, 0 0 #0000);
|
|
1660
1207
|
}
|
|
1661
|
-
.data-\[state\=open\]\:animate-in[data-state=open] {
|
|
1662
|
-
animation-name: enter;
|
|
1663
|
-
animation-duration: 150ms;
|
|
1664
|
-
--tw-enter-opacity: initial;
|
|
1665
|
-
--tw-enter-scale: initial;
|
|
1666
|
-
--tw-enter-rotate: initial;
|
|
1667
|
-
--tw-enter-translate-x: initial;
|
|
1668
|
-
--tw-enter-translate-y: initial;
|
|
1669
|
-
}
|
|
1670
|
-
.data-\[state\=closed\]\:animate-out[data-state=closed] {
|
|
1671
|
-
animation-name: exit;
|
|
1672
|
-
animation-duration: 150ms;
|
|
1673
|
-
--tw-exit-opacity: initial;
|
|
1674
|
-
--tw-exit-scale: initial;
|
|
1675
|
-
--tw-exit-rotate: initial;
|
|
1676
|
-
--tw-exit-translate-x: initial;
|
|
1677
|
-
--tw-exit-translate-y: initial;
|
|
1678
|
-
}
|
|
1679
|
-
.data-\[state\=closed\]\:fade-out-0[data-state=closed] {
|
|
1680
|
-
--tw-exit-opacity: 0;
|
|
1681
|
-
}
|
|
1682
|
-
.data-\[state\=open\]\:fade-in-0[data-state=open] {
|
|
1683
|
-
--tw-enter-opacity: 0;
|
|
1684
|
-
}
|
|
1685
|
-
.data-\[state\=closed\]\:zoom-out-95[data-state=closed] {
|
|
1686
|
-
--tw-exit-scale: .95;
|
|
1687
|
-
}
|
|
1688
|
-
.data-\[state\=open\]\:zoom-in-95[data-state=open] {
|
|
1689
|
-
--tw-enter-scale: .95;
|
|
1690
|
-
}
|
|
1691
|
-
.data-\[side\=bottom\]\:slide-in-from-top-2[data-side=bottom] {
|
|
1692
|
-
--tw-enter-translate-y: -0.5rem;
|
|
1693
|
-
}
|
|
1694
|
-
.data-\[side\=left\]\:slide-in-from-right-2[data-side=left] {
|
|
1695
|
-
--tw-enter-translate-x: 0.5rem;
|
|
1696
|
-
}
|
|
1697
|
-
.data-\[side\=right\]\:slide-in-from-left-2[data-side=right] {
|
|
1698
|
-
--tw-enter-translate-x: -0.5rem;
|
|
1699
|
-
}
|
|
1700
|
-
.data-\[side\=top\]\:slide-in-from-bottom-2[data-side=top] {
|
|
1701
|
-
--tw-enter-translate-y: 0.5rem;
|
|
1702
|
-
}
|
|
1703
|
-
.\*\:data-\[slot\=select-value\]\:line-clamp-1[data-slot=select-value] > * {
|
|
1704
|
-
overflow: hidden;
|
|
1705
|
-
display: -webkit-box;
|
|
1706
|
-
-webkit-box-orient: vertical;
|
|
1707
|
-
-webkit-line-clamp: 1;
|
|
1708
|
-
}
|
|
1709
|
-
.\*\:data-\[slot\=select-value\]\:flex[data-slot=select-value] > * {
|
|
1710
|
-
display: flex;
|
|
1711
|
-
}
|
|
1712
|
-
.\*\:data-\[slot\=select-value\]\:items-center[data-slot=select-value] > * {
|
|
1713
|
-
align-items: center;
|
|
1714
|
-
}
|
|
1715
|
-
.\*\:data-\[slot\=select-value\]\:gap-2[data-slot=select-value] > * {
|
|
1716
|
-
gap: 0.5rem;
|
|
1717
|
-
}
|
|
1718
1208
|
.group[data-disabled=true] .group-data-\[disabled\=true\]\:pointer-events-none {
|
|
1719
1209
|
pointer-events: none;
|
|
1720
1210
|
}
|
|
1721
1211
|
.group\/field-group[data-variant=outline] .group-data-\[variant\=outline\]\/field-group\:-mb-2 {
|
|
1722
1212
|
margin-bottom: -0.5rem;
|
|
1723
1213
|
}
|
|
1724
|
-
.group\/drawer-content[data-vaul-drawer-direction=bottom] .group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:block {
|
|
1725
|
-
display: block;
|
|
1726
|
-
}
|
|
1727
|
-
.group\/drawer-content[data-vaul-drawer-direction=bottom] .group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:text-center {
|
|
1728
|
-
text-align: center;
|
|
1729
|
-
}
|
|
1730
|
-
.group\/drawer-content[data-vaul-drawer-direction=top] .group-data-\[vaul-drawer-direction\=top\]\/drawer-content\:text-center {
|
|
1731
|
-
text-align: center;
|
|
1732
|
-
}
|
|
1733
1214
|
.group\/field[data-disabled=true] .group-data-\[disabled\=true\]\/field\:opacity-50 {
|
|
1734
1215
|
opacity: 0.5;
|
|
1735
1216
|
}
|
|
1736
1217
|
.group[data-disabled=true] .group-data-\[disabled\=true\]\:opacity-50 {
|
|
1737
1218
|
opacity: 0.5;
|
|
1738
1219
|
}
|
|
1739
|
-
@media (min-width: 640px) {
|
|
1740
|
-
.sm\:max-w-lg {
|
|
1741
|
-
max-width: 32rem;
|
|
1742
|
-
}
|
|
1743
|
-
.sm\:max-w-md {
|
|
1744
|
-
max-width: 28rem;
|
|
1745
|
-
}
|
|
1746
|
-
.sm\:flex-row {
|
|
1747
|
-
flex-direction: row;
|
|
1748
|
-
}
|
|
1749
|
-
.sm\:justify-end {
|
|
1750
|
-
justify-content: flex-end;
|
|
1751
|
-
}
|
|
1752
|
-
.sm\:text-left {
|
|
1753
|
-
text-align: left;
|
|
1754
|
-
}
|
|
1755
|
-
.data-\[vaul-drawer-direction\=left\]\:sm\:max-w-sm[data-vaul-drawer-direction=left] {
|
|
1756
|
-
max-width: 24rem;
|
|
1757
|
-
}
|
|
1758
|
-
.data-\[vaul-drawer-direction\=right\]\:sm\:max-w-sm[data-vaul-drawer-direction=right] {
|
|
1759
|
-
max-width: 24rem;
|
|
1760
|
-
}
|
|
1761
|
-
}
|
|
1762
1220
|
@media (min-width: 768px) {
|
|
1763
|
-
.md\:ms-auto {
|
|
1764
|
-
margin-inline-start: auto;
|
|
1765
|
-
}
|
|
1766
|
-
.md\:block {
|
|
1767
|
-
display: block;
|
|
1768
|
-
}
|
|
1769
|
-
.md\:hidden {
|
|
1770
|
-
display: none;
|
|
1771
|
-
}
|
|
1772
|
-
.md\:h-3\.5 {
|
|
1773
|
-
height: 0.875rem;
|
|
1774
|
-
}
|
|
1775
|
-
.md\:h-4 {
|
|
1776
|
-
height: 1rem;
|
|
1777
|
-
}
|
|
1778
|
-
.md\:w-40 {
|
|
1779
|
-
width: 10rem;
|
|
1780
|
-
}
|
|
1781
|
-
.md\:w-56 {
|
|
1782
|
-
width: 14rem;
|
|
1783
|
-
}
|
|
1784
|
-
.md\:w-64 {
|
|
1785
|
-
width: 16rem;
|
|
1786
|
-
}
|
|
1787
|
-
.md\:flex-row {
|
|
1788
|
-
flex-direction: row;
|
|
1789
|
-
}
|
|
1790
|
-
.md\:gap-1\.5 {
|
|
1791
|
-
gap: 0.375rem;
|
|
1792
|
-
}
|
|
1793
|
-
.md\:gap-12 {
|
|
1794
|
-
gap: 3rem;
|
|
1795
|
-
}
|
|
1796
|
-
.md\:gap-6 {
|
|
1797
|
-
gap: 1.5rem;
|
|
1798
|
-
}
|
|
1799
|
-
.md\:text-left {
|
|
1800
|
-
text-align: left;
|
|
1801
|
-
}
|
|
1802
|
-
.md\:text-start {
|
|
1803
|
-
text-align: start;
|
|
1804
|
-
}
|
|
1805
1221
|
.md\:text-sm {
|
|
1806
1222
|
font-size: 0.875rem;
|
|
1807
1223
|
line-height: 1.25rem;
|
|
@@ -1811,11 +1227,6 @@ video {
|
|
|
1811
1227
|
line-height: 1.75rem;
|
|
1812
1228
|
}
|
|
1813
1229
|
}
|
|
1814
|
-
@media (min-width: 1024px) {
|
|
1815
|
-
.lg\:w-60 {
|
|
1816
|
-
width: 15rem;
|
|
1817
|
-
}
|
|
1818
|
-
}
|
|
1819
1230
|
.\[\&\>\*\]\:w-full > * {
|
|
1820
1231
|
width: 100%;
|
|
1821
1232
|
}
|