@erikey/react 0.4.20 → 0.4.22
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 +13 -593
- package/dist/styles.css.map +1 -1
- package/dist/ui/index.mjs +4225 -19784
- 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;
|
|
@@ -534,6 +466,9 @@ video {
|
|
|
534
466
|
.block {
|
|
535
467
|
display: block;
|
|
536
468
|
}
|
|
469
|
+
.inline {
|
|
470
|
+
display: inline;
|
|
471
|
+
}
|
|
537
472
|
.flex {
|
|
538
473
|
display: flex;
|
|
539
474
|
}
|
|
@@ -552,10 +487,6 @@ video {
|
|
|
552
487
|
.aspect-square {
|
|
553
488
|
aspect-ratio: 1 / 1;
|
|
554
489
|
}
|
|
555
|
-
.\!size-8 {
|
|
556
|
-
width: 2rem !important;
|
|
557
|
-
height: 2rem !important;
|
|
558
|
-
}
|
|
559
490
|
.size-10 {
|
|
560
491
|
width: 2.5rem;
|
|
561
492
|
height: 2.5rem;
|
|
@@ -568,14 +499,6 @@ video {
|
|
|
568
499
|
width: 4rem;
|
|
569
500
|
height: 4rem;
|
|
570
501
|
}
|
|
571
|
-
.size-2 {
|
|
572
|
-
width: 0.5rem;
|
|
573
|
-
height: 0.5rem;
|
|
574
|
-
}
|
|
575
|
-
.size-20 {
|
|
576
|
-
width: 5rem;
|
|
577
|
-
height: 5rem;
|
|
578
|
-
}
|
|
579
502
|
.size-3 {
|
|
580
503
|
width: 0.75rem;
|
|
581
504
|
height: 0.75rem;
|
|
@@ -588,10 +511,6 @@ video {
|
|
|
588
511
|
width: 1rem;
|
|
589
512
|
height: 1rem;
|
|
590
513
|
}
|
|
591
|
-
.size-5 {
|
|
592
|
-
width: 1.25rem;
|
|
593
|
-
height: 1.25rem;
|
|
594
|
-
}
|
|
595
514
|
.size-6 {
|
|
596
515
|
width: 1.5rem;
|
|
597
516
|
height: 1.5rem;
|
|
@@ -614,22 +533,9 @@ video {
|
|
|
614
533
|
height: -moz-fit-content;
|
|
615
534
|
height: fit-content;
|
|
616
535
|
}
|
|
617
|
-
.size-full {
|
|
618
|
-
width: 100%;
|
|
619
|
-
height: 100%;
|
|
620
|
-
}
|
|
621
536
|
.h-10 {
|
|
622
537
|
height: 2.5rem;
|
|
623
538
|
}
|
|
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
539
|
.h-4 {
|
|
634
540
|
height: 1rem;
|
|
635
541
|
}
|
|
@@ -645,21 +551,8 @@ video {
|
|
|
645
551
|
.h-\[76px\] {
|
|
646
552
|
height: 76px;
|
|
647
553
|
}
|
|
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;
|
|
554
|
+
.h-full {
|
|
555
|
+
height: 100%;
|
|
663
556
|
}
|
|
664
557
|
.min-h-16 {
|
|
665
558
|
min-height: 4rem;
|
|
@@ -670,48 +563,9 @@ video {
|
|
|
670
563
|
.\!w-auto {
|
|
671
564
|
width: auto !important;
|
|
672
565
|
}
|
|
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
566
|
.w-9 {
|
|
704
567
|
width: 2.25rem;
|
|
705
568
|
}
|
|
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
569
|
.w-\[302px\] {
|
|
716
570
|
width: 302px;
|
|
717
571
|
}
|
|
@@ -728,36 +582,9 @@ video {
|
|
|
728
582
|
.min-w-0 {
|
|
729
583
|
min-width: 0px;
|
|
730
584
|
}
|
|
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
585
|
.max-w-\[465px\] {
|
|
753
586
|
max-width: 465px;
|
|
754
587
|
}
|
|
755
|
-
.max-w-\[calc\(100\%-2rem\)\] {
|
|
756
|
-
max-width: calc(100% - 2rem);
|
|
757
|
-
}
|
|
758
|
-
.max-w-full {
|
|
759
|
-
max-width: 100%;
|
|
760
|
-
}
|
|
761
588
|
.max-w-sm {
|
|
762
589
|
max-width: 24rem;
|
|
763
590
|
}
|
|
@@ -773,14 +600,6 @@ video {
|
|
|
773
600
|
.grow {
|
|
774
601
|
flex-grow: 1;
|
|
775
602
|
}
|
|
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
603
|
@keyframes pulse {
|
|
785
604
|
50% {
|
|
786
605
|
opacity: .5;
|
|
@@ -797,18 +616,11 @@ video {
|
|
|
797
616
|
.animate-spin {
|
|
798
617
|
animation: spin 1s linear infinite;
|
|
799
618
|
}
|
|
800
|
-
.cursor-default {
|
|
801
|
-
cursor: default;
|
|
802
|
-
}
|
|
803
619
|
.select-none {
|
|
804
620
|
-webkit-user-select: none;
|
|
805
621
|
-moz-user-select: none;
|
|
806
622
|
user-select: none;
|
|
807
623
|
}
|
|
808
|
-
.scroll-my-1 {
|
|
809
|
-
scroll-margin-top: 0.25rem;
|
|
810
|
-
scroll-margin-bottom: 0.25rem;
|
|
811
|
-
}
|
|
812
624
|
.list-disc {
|
|
813
625
|
list-style-type: disc;
|
|
814
626
|
}
|
|
@@ -830,9 +642,6 @@ video {
|
|
|
830
642
|
.flex-col {
|
|
831
643
|
flex-direction: column;
|
|
832
644
|
}
|
|
833
|
-
.flex-col-reverse {
|
|
834
|
-
flex-direction: column-reverse;
|
|
835
|
-
}
|
|
836
645
|
.flex-wrap {
|
|
837
646
|
flex-wrap: wrap;
|
|
838
647
|
}
|
|
@@ -842,9 +651,6 @@ video {
|
|
|
842
651
|
.items-center {
|
|
843
652
|
align-items: center;
|
|
844
653
|
}
|
|
845
|
-
.justify-start {
|
|
846
|
-
justify-content: flex-start;
|
|
847
|
-
}
|
|
848
654
|
.justify-center {
|
|
849
655
|
justify-content: center;
|
|
850
656
|
}
|
|
@@ -854,12 +660,6 @@ video {
|
|
|
854
660
|
.justify-items-start {
|
|
855
661
|
justify-items: start;
|
|
856
662
|
}
|
|
857
|
-
.justify-items-center {
|
|
858
|
-
justify-items: center;
|
|
859
|
-
}
|
|
860
|
-
.gap-0\.5 {
|
|
861
|
-
gap: 0.125rem;
|
|
862
|
-
}
|
|
863
663
|
.gap-1 {
|
|
864
664
|
gap: 0.25rem;
|
|
865
665
|
}
|
|
@@ -889,11 +689,6 @@ video {
|
|
|
889
689
|
margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
|
|
890
690
|
margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
|
|
891
691
|
}
|
|
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
692
|
.self-start {
|
|
898
693
|
align-self: flex-start;
|
|
899
694
|
}
|
|
@@ -906,23 +701,9 @@ video {
|
|
|
906
701
|
.overflow-hidden {
|
|
907
702
|
overflow: hidden;
|
|
908
703
|
}
|
|
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
704
|
.whitespace-nowrap {
|
|
921
705
|
white-space: nowrap;
|
|
922
706
|
}
|
|
923
|
-
.break-all {
|
|
924
|
-
word-break: break-all;
|
|
925
|
-
}
|
|
926
707
|
.rounded {
|
|
927
708
|
border-radius: 0.25rem;
|
|
928
709
|
}
|
|
@@ -938,16 +719,9 @@ video {
|
|
|
938
719
|
.rounded-md {
|
|
939
720
|
border-radius: 0.375rem;
|
|
940
721
|
}
|
|
941
|
-
.rounded-sm {
|
|
942
|
-
border-radius: 0.125rem;
|
|
943
|
-
}
|
|
944
722
|
.rounded-xl {
|
|
945
723
|
border-radius: 0.75rem;
|
|
946
724
|
}
|
|
947
|
-
.rounded-b-xl {
|
|
948
|
-
border-bottom-right-radius: 0.75rem;
|
|
949
|
-
border-bottom-left-radius: 0.75rem;
|
|
950
|
-
}
|
|
951
725
|
.border {
|
|
952
726
|
border-width: 1px;
|
|
953
727
|
}
|
|
@@ -967,53 +741,28 @@ video {
|
|
|
967
741
|
.border-solid {
|
|
968
742
|
border-style: solid;
|
|
969
743
|
}
|
|
970
|
-
.border-transparent {
|
|
971
|
-
border-color: transparent;
|
|
972
|
-
}
|
|
973
744
|
.\!bg-transparent {
|
|
974
745
|
background-color: transparent !important;
|
|
975
746
|
}
|
|
976
|
-
.bg-black\/50 {
|
|
977
|
-
background-color: rgb(0 0 0 / 0.5);
|
|
978
|
-
}
|
|
979
747
|
.bg-transparent {
|
|
980
748
|
background-color: transparent;
|
|
981
749
|
}
|
|
982
|
-
.
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
.\!p-2 {
|
|
986
|
-
padding: 0.5rem !important;
|
|
750
|
+
.object-cover {
|
|
751
|
+
-o-object-fit: cover;
|
|
752
|
+
object-fit: cover;
|
|
987
753
|
}
|
|
988
754
|
.p-0 {
|
|
989
755
|
padding: 0px;
|
|
990
756
|
}
|
|
991
|
-
.p-1 {
|
|
992
|
-
padding: 0.25rem;
|
|
993
|
-
}
|
|
994
757
|
.p-2 {
|
|
995
758
|
padding: 0.5rem;
|
|
996
759
|
}
|
|
997
|
-
.p-
|
|
998
|
-
padding:
|
|
999
|
-
}
|
|
1000
|
-
.p-6 {
|
|
1001
|
-
padding: 1.5rem;
|
|
760
|
+
.p-3 {
|
|
761
|
+
padding: 0.75rem;
|
|
1002
762
|
}
|
|
1003
763
|
.p-\[20px\] {
|
|
1004
764
|
padding: 20px;
|
|
1005
765
|
}
|
|
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
766
|
.px-0 {
|
|
1018
767
|
padding-left: 0px;
|
|
1019
768
|
padding-right: 0px;
|
|
@@ -1042,10 +791,6 @@ video {
|
|
|
1042
791
|
padding-top: 0.25rem;
|
|
1043
792
|
padding-bottom: 0.25rem;
|
|
1044
793
|
}
|
|
1045
|
-
.py-1\.5 {
|
|
1046
|
-
padding-top: 0.375rem;
|
|
1047
|
-
padding-bottom: 0.375rem;
|
|
1048
|
-
}
|
|
1049
794
|
.py-2 {
|
|
1050
795
|
padding-top: 0.5rem;
|
|
1051
796
|
padding-bottom: 0.5rem;
|
|
@@ -1054,55 +799,16 @@ video {
|
|
|
1054
799
|
padding-top: 0.75rem;
|
|
1055
800
|
padding-bottom: 0.75rem;
|
|
1056
801
|
}
|
|
1057
|
-
.py-4 {
|
|
1058
|
-
padding-top: 1rem;
|
|
1059
|
-
padding-bottom: 1rem;
|
|
1060
|
-
}
|
|
1061
802
|
.py-6 {
|
|
1062
803
|
padding-top: 1.5rem;
|
|
1063
804
|
padding-bottom: 1.5rem;
|
|
1064
805
|
}
|
|
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
806
|
.pr-10 {
|
|
1078
807
|
padding-right: 2.5rem;
|
|
1079
808
|
}
|
|
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
809
|
.text-center {
|
|
1090
810
|
text-align: center;
|
|
1091
811
|
}
|
|
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
812
|
.font-sans {
|
|
1107
813
|
font-family:
|
|
1108
814
|
ui-sans-serif,
|
|
@@ -1113,10 +819,6 @@ video {
|
|
|
1113
819
|
"Segoe UI Symbol",
|
|
1114
820
|
"Noto Color Emoji";
|
|
1115
821
|
}
|
|
1116
|
-
.text-2xl {
|
|
1117
|
-
font-size: 1.5rem;
|
|
1118
|
-
line-height: 2rem;
|
|
1119
|
-
}
|
|
1120
822
|
.text-\[12px\] {
|
|
1121
823
|
font-size: 12px;
|
|
1122
824
|
}
|
|
@@ -1172,15 +874,9 @@ video {
|
|
|
1172
874
|
.leading-snug {
|
|
1173
875
|
line-height: 1.375;
|
|
1174
876
|
}
|
|
1175
|
-
.leading-tight {
|
|
1176
|
-
line-height: 1.25;
|
|
1177
|
-
}
|
|
1178
877
|
.tracking-tight {
|
|
1179
878
|
letter-spacing: -0.025em;
|
|
1180
879
|
}
|
|
1181
|
-
.tracking-widest {
|
|
1182
|
-
letter-spacing: 0.1em;
|
|
1183
|
-
}
|
|
1184
880
|
.text-\[\#666666\] {
|
|
1185
881
|
--tw-text-opacity: 1;
|
|
1186
882
|
color: rgb(102 102 102 / var(--tw-text-opacity, 1));
|
|
@@ -1201,28 +897,6 @@ video {
|
|
|
1201
897
|
.underline-offset-4 {
|
|
1202
898
|
text-underline-offset: 4px;
|
|
1203
899
|
}
|
|
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
900
|
.shadow-sm {
|
|
1227
901
|
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
1228
902
|
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
|
@@ -1254,11 +928,6 @@ video {
|
|
|
1254
928
|
.transition-none {
|
|
1255
929
|
transition-property: none;
|
|
1256
930
|
}
|
|
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
931
|
.transition-shadow {
|
|
1263
932
|
transition-property: box-shadow;
|
|
1264
933
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -1267,9 +936,6 @@ video {
|
|
|
1267
936
|
.duration-1000 {
|
|
1268
937
|
transition-duration: 1000ms;
|
|
1269
938
|
}
|
|
1270
|
-
.duration-200 {
|
|
1271
|
-
transition-duration: 200ms;
|
|
1272
|
-
}
|
|
1273
939
|
@keyframes enter {
|
|
1274
940
|
from {
|
|
1275
941
|
opacity: var(--tw-enter-opacity, 1);
|
|
@@ -1285,9 +951,6 @@ video {
|
|
|
1285
951
|
.duration-1000 {
|
|
1286
952
|
animation-duration: 1000ms;
|
|
1287
953
|
}
|
|
1288
|
-
.duration-200 {
|
|
1289
|
-
animation-duration: 200ms;
|
|
1290
|
-
}
|
|
1291
954
|
@keyframes enter {
|
|
1292
955
|
from {
|
|
1293
956
|
opacity: var(--tw-enter-opacity, 1);
|
|
@@ -1436,8 +1099,9 @@ video {
|
|
|
1436
1099
|
.hover\:underline:hover {
|
|
1437
1100
|
text-decoration-line: underline;
|
|
1438
1101
|
}
|
|
1439
|
-
.
|
|
1440
|
-
|
|
1102
|
+
.focus\:outline-none:focus {
|
|
1103
|
+
outline: 2px solid transparent;
|
|
1104
|
+
outline-offset: 2px;
|
|
1441
1105
|
}
|
|
1442
1106
|
.focus\:ring-2:focus {
|
|
1443
1107
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
@@ -1450,9 +1114,6 @@ video {
|
|
|
1450
1114
|
.focus\:ring-offset-2:focus {
|
|
1451
1115
|
--tw-ring-offset-width: 2px;
|
|
1452
1116
|
}
|
|
1453
|
-
.focus-visible\:outline-1:focus-visible {
|
|
1454
|
-
outline-width: 1px;
|
|
1455
|
-
}
|
|
1456
1117
|
.focus-visible\:ring-\[3px\]:focus-visible {
|
|
1457
1118
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1458
1119
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -1519,118 +1180,24 @@ video {
|
|
|
1519
1180
|
.group\/field:has([data-orientation=horizontal]) .group-has-\[\[data-orientation\=horizontal\]\]\/field\:text-balance {
|
|
1520
1181
|
text-wrap: balance;
|
|
1521
1182
|
}
|
|
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
1183
|
.data-\[active\=true\]\:z-10[data-active=true] {
|
|
1554
1184
|
z-index: 10;
|
|
1555
1185
|
}
|
|
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
1186
|
.data-\[orientation\=horizontal\]\:h-px[data-orientation=horizontal] {
|
|
1563
1187
|
height: 1px;
|
|
1564
1188
|
}
|
|
1565
1189
|
.data-\[orientation\=vertical\]\:h-full[data-orientation=vertical] {
|
|
1566
1190
|
height: 100%;
|
|
1567
1191
|
}
|
|
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
1192
|
.data-\[orientation\=horizontal\]\:w-full[data-orientation=horizontal] {
|
|
1581
1193
|
width: 100%;
|
|
1582
1194
|
}
|
|
1583
1195
|
.data-\[orientation\=vertical\]\:w-px[data-orientation=vertical] {
|
|
1584
1196
|
width: 1px;
|
|
1585
1197
|
}
|
|
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
1198
|
.data-\[slot\=checkbox-group\]\:gap-3[data-slot=checkbox-group] {
|
|
1609
1199
|
gap: 0.75rem;
|
|
1610
1200
|
}
|
|
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
1201
|
.data-\[variant\=label\]\:text-sm[data-variant=label] {
|
|
1635
1202
|
font-size: 0.875rem;
|
|
1636
1203
|
line-height: 1.25rem;
|
|
@@ -1639,17 +1206,6 @@ video {
|
|
|
1639
1206
|
font-size: 1rem;
|
|
1640
1207
|
line-height: 1.5rem;
|
|
1641
1208
|
}
|
|
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
1209
|
.data-\[active\=true\]\:ring-\[3px\][data-active=true] {
|
|
1654
1210
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1655
1211
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -1658,150 +1214,19 @@ video {
|
|
|
1658
1214
|
var(--tw-ring-shadow),
|
|
1659
1215
|
var(--tw-shadow, 0 0 #0000);
|
|
1660
1216
|
}
|
|
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
1217
|
.group[data-disabled=true] .group-data-\[disabled\=true\]\:pointer-events-none {
|
|
1719
1218
|
pointer-events: none;
|
|
1720
1219
|
}
|
|
1721
1220
|
.group\/field-group[data-variant=outline] .group-data-\[variant\=outline\]\/field-group\:-mb-2 {
|
|
1722
1221
|
margin-bottom: -0.5rem;
|
|
1723
1222
|
}
|
|
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
1223
|
.group\/field[data-disabled=true] .group-data-\[disabled\=true\]\/field\:opacity-50 {
|
|
1734
1224
|
opacity: 0.5;
|
|
1735
1225
|
}
|
|
1736
1226
|
.group[data-disabled=true] .group-data-\[disabled\=true\]\:opacity-50 {
|
|
1737
1227
|
opacity: 0.5;
|
|
1738
1228
|
}
|
|
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
1229
|
@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
1230
|
.md\:text-sm {
|
|
1806
1231
|
font-size: 0.875rem;
|
|
1807
1232
|
line-height: 1.25rem;
|
|
@@ -1811,11 +1236,6 @@ video {
|
|
|
1811
1236
|
line-height: 1.75rem;
|
|
1812
1237
|
}
|
|
1813
1238
|
}
|
|
1814
|
-
@media (min-width: 1024px) {
|
|
1815
|
-
.lg\:w-60 {
|
|
1816
|
-
width: 15rem;
|
|
1817
|
-
}
|
|
1818
|
-
}
|
|
1819
1239
|
.\[\&\>\*\]\:w-full > * {
|
|
1820
1240
|
width: 100%;
|
|
1821
1241
|
}
|