@tapcart/mobile-components 0.12.12 → 0.12.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/hooks/use-order-details.d.ts.map +1 -1
- package/dist/components/hooks/use-order-details.js +4 -2
- package/dist/components/hooks/use-reviews.d.ts.map +1 -1
- package/dist/components/hooks/use-reviews.js +3 -10
- package/dist/components/ui/quantity-picker.d.ts.map +1 -1
- package/dist/components/ui/quantity-picker.js +5 -4
- package/dist/components/ui/quantity-pickerNEW.d.ts.map +1 -1
- package/dist/components/ui/quantity-pickerNEW.js +7 -6
- package/dist/components/ui/video-enhanced.d.ts.map +1 -1
- package/dist/components/ui/video-enhanced.js +30 -8
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/lib/utils.d.ts +3 -0
- package/dist/lib/utils.d.ts.map +1 -1
- package/dist/lib/utils.js +35 -0
- package/dist/styles.css +454 -34
- package/dist/tests/quantity-picker.test.d.ts +2 -0
- package/dist/tests/quantity-picker.test.d.ts.map +1 -0
- package/dist/tests/quantity-picker.test.js +50 -0
- package/dist/tests/quantity-pickerNEW.test.d.ts +2 -0
- package/dist/tests/quantity-pickerNEW.test.d.ts.map +1 -0
- package/dist/tests/quantity-pickerNEW.test.js +70 -0
- package/dist/tests/utils.test.js +60 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -695,9 +695,6 @@ video {
|
|
|
695
695
|
.invisible {
|
|
696
696
|
visibility: hidden;
|
|
697
697
|
}
|
|
698
|
-
.collapse {
|
|
699
|
-
visibility: collapse;
|
|
700
|
-
}
|
|
701
698
|
.static {
|
|
702
699
|
position: static;
|
|
703
700
|
}
|
|
@@ -744,12 +741,18 @@ video {
|
|
|
744
741
|
.bottom-2 {
|
|
745
742
|
bottom: 0.5rem;
|
|
746
743
|
}
|
|
744
|
+
.bottom-4 {
|
|
745
|
+
bottom: 1rem;
|
|
746
|
+
}
|
|
747
747
|
.bottom-\[18px\] {
|
|
748
748
|
bottom: 18px;
|
|
749
749
|
}
|
|
750
750
|
.bottom-\[58px\] {
|
|
751
751
|
bottom: 58px;
|
|
752
752
|
}
|
|
753
|
+
.bottom-\[9px\] {
|
|
754
|
+
bottom: 9px;
|
|
755
|
+
}
|
|
753
756
|
.left-0 {
|
|
754
757
|
left: 0px;
|
|
755
758
|
}
|
|
@@ -765,6 +768,12 @@ video {
|
|
|
765
768
|
.left-4 {
|
|
766
769
|
left: 1rem;
|
|
767
770
|
}
|
|
771
|
+
.left-5 {
|
|
772
|
+
left: 1.25rem;
|
|
773
|
+
}
|
|
774
|
+
.left-\[-10\%\] {
|
|
775
|
+
left: -10%;
|
|
776
|
+
}
|
|
768
777
|
.left-\[50\%\] {
|
|
769
778
|
left: 50%;
|
|
770
779
|
}
|
|
@@ -798,6 +807,9 @@ video {
|
|
|
798
807
|
.isolate {
|
|
799
808
|
isolation: isolate;
|
|
800
809
|
}
|
|
810
|
+
.z-0 {
|
|
811
|
+
z-index: 0;
|
|
812
|
+
}
|
|
801
813
|
.z-10 {
|
|
802
814
|
z-index: 10;
|
|
803
815
|
}
|
|
@@ -807,12 +819,21 @@ video {
|
|
|
807
819
|
.z-30 {
|
|
808
820
|
z-index: 30;
|
|
809
821
|
}
|
|
822
|
+
.z-40 {
|
|
823
|
+
z-index: 40;
|
|
824
|
+
}
|
|
810
825
|
.z-50 {
|
|
811
826
|
z-index: 50;
|
|
812
827
|
}
|
|
813
828
|
.z-\[100\] {
|
|
814
829
|
z-index: 100;
|
|
815
830
|
}
|
|
831
|
+
.z-\[1\] {
|
|
832
|
+
z-index: 1;
|
|
833
|
+
}
|
|
834
|
+
.z-\[30\] {
|
|
835
|
+
z-index: 30;
|
|
836
|
+
}
|
|
816
837
|
.order-1 {
|
|
817
838
|
order: 1;
|
|
818
839
|
}
|
|
@@ -845,6 +866,10 @@ video {
|
|
|
845
866
|
margin-left: 0.25rem;
|
|
846
867
|
margin-right: 0.25rem;
|
|
847
868
|
}
|
|
869
|
+
.mx-1\.5 {
|
|
870
|
+
margin-left: 0.375rem;
|
|
871
|
+
margin-right: 0.375rem;
|
|
872
|
+
}
|
|
848
873
|
.mx-2 {
|
|
849
874
|
margin-left: 0.5rem;
|
|
850
875
|
margin-right: 0.5rem;
|
|
@@ -865,6 +890,10 @@ video {
|
|
|
865
890
|
margin-top: 0.25rem;
|
|
866
891
|
margin-bottom: 0.25rem;
|
|
867
892
|
}
|
|
893
|
+
.my-2 {
|
|
894
|
+
margin-top: 0.5rem;
|
|
895
|
+
margin-bottom: 0.5rem;
|
|
896
|
+
}
|
|
868
897
|
.my-3 {
|
|
869
898
|
margin-top: 0.75rem;
|
|
870
899
|
margin-bottom: 0.75rem;
|
|
@@ -873,10 +902,17 @@ video {
|
|
|
873
902
|
margin-top: 1rem;
|
|
874
903
|
margin-bottom: 1rem;
|
|
875
904
|
}
|
|
905
|
+
.my-5 {
|
|
906
|
+
margin-top: 1.25rem;
|
|
907
|
+
margin-bottom: 1.25rem;
|
|
908
|
+
}
|
|
876
909
|
.my-auto {
|
|
877
910
|
margin-top: auto;
|
|
878
911
|
margin-bottom: auto;
|
|
879
912
|
}
|
|
913
|
+
.-mb-\[10\.5px\] {
|
|
914
|
+
margin-bottom: -10.5px;
|
|
915
|
+
}
|
|
880
916
|
.-mt-1 {
|
|
881
917
|
margin-top: -0.25rem;
|
|
882
918
|
}
|
|
@@ -886,12 +922,21 @@ video {
|
|
|
886
922
|
.mb-0 {
|
|
887
923
|
margin-bottom: 0px;
|
|
888
924
|
}
|
|
925
|
+
.mb-0\.5 {
|
|
926
|
+
margin-bottom: 0.125rem;
|
|
927
|
+
}
|
|
889
928
|
.mb-1 {
|
|
890
929
|
margin-bottom: 0.25rem;
|
|
891
930
|
}
|
|
931
|
+
.mb-1\.5 {
|
|
932
|
+
margin-bottom: 0.375rem;
|
|
933
|
+
}
|
|
892
934
|
.mb-2 {
|
|
893
935
|
margin-bottom: 0.5rem;
|
|
894
936
|
}
|
|
937
|
+
.mb-2\.5 {
|
|
938
|
+
margin-bottom: 0.625rem;
|
|
939
|
+
}
|
|
895
940
|
.mb-3 {
|
|
896
941
|
margin-bottom: 0.75rem;
|
|
897
942
|
}
|
|
@@ -901,24 +946,48 @@ video {
|
|
|
901
946
|
.mb-6 {
|
|
902
947
|
margin-bottom: 1.5rem;
|
|
903
948
|
}
|
|
949
|
+
.mb-\[10px\] {
|
|
950
|
+
margin-bottom: 10px;
|
|
951
|
+
}
|
|
952
|
+
.mb-\[6px\] {
|
|
953
|
+
margin-bottom: 6px;
|
|
954
|
+
}
|
|
955
|
+
.mb-px {
|
|
956
|
+
margin-bottom: 1px;
|
|
957
|
+
}
|
|
904
958
|
.ml-0 {
|
|
905
959
|
margin-left: 0px;
|
|
906
960
|
}
|
|
907
961
|
.ml-1 {
|
|
908
962
|
margin-left: 0.25rem;
|
|
909
963
|
}
|
|
964
|
+
.ml-1\.5 {
|
|
965
|
+
margin-left: 0.375rem;
|
|
966
|
+
}
|
|
910
967
|
.ml-2 {
|
|
911
968
|
margin-left: 0.5rem;
|
|
912
969
|
}
|
|
970
|
+
.ml-2\.5 {
|
|
971
|
+
margin-left: 0.625rem;
|
|
972
|
+
}
|
|
973
|
+
.ml-3 {
|
|
974
|
+
margin-left: 0.75rem;
|
|
975
|
+
}
|
|
913
976
|
.ml-auto {
|
|
914
977
|
margin-left: auto;
|
|
915
978
|
}
|
|
916
979
|
.mr-1 {
|
|
917
980
|
margin-right: 0.25rem;
|
|
918
981
|
}
|
|
982
|
+
.mr-1\.5 {
|
|
983
|
+
margin-right: 0.375rem;
|
|
984
|
+
}
|
|
919
985
|
.mr-2 {
|
|
920
986
|
margin-right: 0.5rem;
|
|
921
987
|
}
|
|
988
|
+
.mr-2\.5 {
|
|
989
|
+
margin-right: 0.625rem;
|
|
990
|
+
}
|
|
922
991
|
.mr-4 {
|
|
923
992
|
margin-right: 1rem;
|
|
924
993
|
}
|
|
@@ -931,6 +1000,9 @@ video {
|
|
|
931
1000
|
.mt-1 {
|
|
932
1001
|
margin-top: 0.25rem;
|
|
933
1002
|
}
|
|
1003
|
+
.mt-1\.5 {
|
|
1004
|
+
margin-top: 0.375rem;
|
|
1005
|
+
}
|
|
934
1006
|
.mt-2 {
|
|
935
1007
|
margin-top: 0.5rem;
|
|
936
1008
|
}
|
|
@@ -1045,6 +1117,9 @@ video {
|
|
|
1045
1117
|
.h-3 {
|
|
1046
1118
|
height: 0.75rem;
|
|
1047
1119
|
}
|
|
1120
|
+
.h-32 {
|
|
1121
|
+
height: 8rem;
|
|
1122
|
+
}
|
|
1048
1123
|
.h-4 {
|
|
1049
1124
|
height: 1rem;
|
|
1050
1125
|
}
|
|
@@ -1069,33 +1144,45 @@ video {
|
|
|
1069
1144
|
.h-9 {
|
|
1070
1145
|
height: 2.25rem;
|
|
1071
1146
|
}
|
|
1147
|
+
.h-\[120px\] {
|
|
1148
|
+
height: 120px;
|
|
1149
|
+
}
|
|
1072
1150
|
.h-\[130px\] {
|
|
1073
1151
|
height: 130px;
|
|
1074
1152
|
}
|
|
1075
|
-
.h-\[16px\] {
|
|
1076
|
-
height: 16px;
|
|
1077
|
-
}
|
|
1078
1153
|
.h-\[1px\] {
|
|
1079
1154
|
height: 1px;
|
|
1080
1155
|
}
|
|
1156
|
+
.h-\[2\.5px\] {
|
|
1157
|
+
height: 2.5px;
|
|
1158
|
+
}
|
|
1081
1159
|
.h-\[22px\] {
|
|
1082
1160
|
height: 22px;
|
|
1083
1161
|
}
|
|
1084
|
-
.h-\[30px\] {
|
|
1085
|
-
height: 30px;
|
|
1086
|
-
}
|
|
1087
1162
|
.h-\[30vh\] {
|
|
1088
1163
|
height: 30vh;
|
|
1089
1164
|
}
|
|
1165
|
+
.h-\[350px\] {
|
|
1166
|
+
height: 350px;
|
|
1167
|
+
}
|
|
1090
1168
|
.h-\[38px\] {
|
|
1091
1169
|
height: 38px;
|
|
1092
1170
|
}
|
|
1171
|
+
.h-\[3px\] {
|
|
1172
|
+
height: 3px;
|
|
1173
|
+
}
|
|
1093
1174
|
.h-\[4px\] {
|
|
1094
1175
|
height: 4px;
|
|
1095
1176
|
}
|
|
1096
1177
|
.h-\[56px\] {
|
|
1097
1178
|
height: 56px;
|
|
1098
1179
|
}
|
|
1180
|
+
.h-\[66px\] {
|
|
1181
|
+
height: 66px;
|
|
1182
|
+
}
|
|
1183
|
+
.h-\[68px\] {
|
|
1184
|
+
height: 68px;
|
|
1185
|
+
}
|
|
1099
1186
|
.h-\[80vh\] {
|
|
1100
1187
|
height: 80vh;
|
|
1101
1188
|
}
|
|
@@ -1124,9 +1211,45 @@ video {
|
|
|
1124
1211
|
.max-h-screen {
|
|
1125
1212
|
max-height: 100vh;
|
|
1126
1213
|
}
|
|
1214
|
+
.min-h-11 {
|
|
1215
|
+
min-height: 2.75rem;
|
|
1216
|
+
}
|
|
1217
|
+
.min-h-16 {
|
|
1218
|
+
min-height: 4rem;
|
|
1219
|
+
}
|
|
1220
|
+
.min-h-5 {
|
|
1221
|
+
min-height: 1.25rem;
|
|
1222
|
+
}
|
|
1223
|
+
.min-h-6 {
|
|
1224
|
+
min-height: 1.5rem;
|
|
1225
|
+
}
|
|
1226
|
+
.min-h-\[100px\] {
|
|
1227
|
+
min-height: 100px;
|
|
1228
|
+
}
|
|
1229
|
+
.min-h-\[150px\] {
|
|
1230
|
+
min-height: 150px;
|
|
1231
|
+
}
|
|
1232
|
+
.min-h-\[210px\] {
|
|
1233
|
+
min-height: 210px;
|
|
1234
|
+
}
|
|
1127
1235
|
.min-h-\[24px\] {
|
|
1128
1236
|
min-height: 24px;
|
|
1129
1237
|
}
|
|
1238
|
+
.min-h-\[36px\] {
|
|
1239
|
+
min-height: 36px;
|
|
1240
|
+
}
|
|
1241
|
+
.min-h-\[400px\] {
|
|
1242
|
+
min-height: 400px;
|
|
1243
|
+
}
|
|
1244
|
+
.min-h-\[40px\] {
|
|
1245
|
+
min-height: 40px;
|
|
1246
|
+
}
|
|
1247
|
+
.min-h-\[44px\] {
|
|
1248
|
+
min-height: 44px;
|
|
1249
|
+
}
|
|
1250
|
+
.min-h-\[60px\] {
|
|
1251
|
+
min-height: 60px;
|
|
1252
|
+
}
|
|
1130
1253
|
.min-h-screen {
|
|
1131
1254
|
min-height: 100vh;
|
|
1132
1255
|
}
|
|
@@ -1151,6 +1274,9 @@ video {
|
|
|
1151
1274
|
.w-10 {
|
|
1152
1275
|
width: 2.5rem;
|
|
1153
1276
|
}
|
|
1277
|
+
.w-11 {
|
|
1278
|
+
width: 2.75rem;
|
|
1279
|
+
}
|
|
1154
1280
|
.w-12 {
|
|
1155
1281
|
width: 3rem;
|
|
1156
1282
|
}
|
|
@@ -1169,12 +1295,18 @@ video {
|
|
|
1169
1295
|
.w-2\/3 {
|
|
1170
1296
|
width: 66.666667%;
|
|
1171
1297
|
}
|
|
1298
|
+
.w-2\/5 {
|
|
1299
|
+
width: 40%;
|
|
1300
|
+
}
|
|
1172
1301
|
.w-20 {
|
|
1173
1302
|
width: 5rem;
|
|
1174
1303
|
}
|
|
1175
1304
|
.w-3\/4 {
|
|
1176
1305
|
width: 75%;
|
|
1177
1306
|
}
|
|
1307
|
+
.w-3\/5 {
|
|
1308
|
+
width: 60%;
|
|
1309
|
+
}
|
|
1178
1310
|
.w-32 {
|
|
1179
1311
|
width: 8rem;
|
|
1180
1312
|
}
|
|
@@ -1199,23 +1331,35 @@ video {
|
|
|
1199
1331
|
.w-9 {
|
|
1200
1332
|
width: 2.25rem;
|
|
1201
1333
|
}
|
|
1334
|
+
.w-\[110px\] {
|
|
1335
|
+
width: 110px;
|
|
1336
|
+
}
|
|
1337
|
+
.w-\[120\%\] {
|
|
1338
|
+
width: 120%;
|
|
1339
|
+
}
|
|
1202
1340
|
.w-\[138px\] {
|
|
1203
1341
|
width: 138px;
|
|
1204
1342
|
}
|
|
1205
|
-
.w-\[16px\] {
|
|
1206
|
-
width: 16px;
|
|
1207
|
-
}
|
|
1208
1343
|
.w-\[1px\] {
|
|
1209
1344
|
width: 1px;
|
|
1210
1345
|
}
|
|
1346
|
+
.w-\[2\.5px\] {
|
|
1347
|
+
width: 2.5px;
|
|
1348
|
+
}
|
|
1211
1349
|
.w-\[22px\] {
|
|
1212
1350
|
width: 22px;
|
|
1213
1351
|
}
|
|
1352
|
+
.w-\[30\%\] {
|
|
1353
|
+
width: 30%;
|
|
1354
|
+
}
|
|
1355
|
+
.w-\[300px\] {
|
|
1356
|
+
width: 300px;
|
|
1357
|
+
}
|
|
1214
1358
|
.w-\[40px\] {
|
|
1215
1359
|
width: 40px;
|
|
1216
1360
|
}
|
|
1217
|
-
.w-\[
|
|
1218
|
-
width:
|
|
1361
|
+
.w-\[65\%\] {
|
|
1362
|
+
width: 65%;
|
|
1219
1363
|
}
|
|
1220
1364
|
.w-auto {
|
|
1221
1365
|
width: auto;
|
|
@@ -1243,6 +1387,9 @@ video {
|
|
|
1243
1387
|
.min-w-16 {
|
|
1244
1388
|
min-width: 4rem;
|
|
1245
1389
|
}
|
|
1390
|
+
.min-w-6 {
|
|
1391
|
+
min-width: 1.5rem;
|
|
1392
|
+
}
|
|
1246
1393
|
.min-w-\[8rem\] {
|
|
1247
1394
|
min-width: 8rem;
|
|
1248
1395
|
}
|
|
@@ -1250,6 +1397,18 @@ video {
|
|
|
1250
1397
|
min-width: -moz-fit-content;
|
|
1251
1398
|
min-width: fit-content;
|
|
1252
1399
|
}
|
|
1400
|
+
.max-w-\[140px\] {
|
|
1401
|
+
max-width: 140px;
|
|
1402
|
+
}
|
|
1403
|
+
.max-w-\[198px\] {
|
|
1404
|
+
max-width: 198px;
|
|
1405
|
+
}
|
|
1406
|
+
.max-w-\[5rem\] {
|
|
1407
|
+
max-width: 5rem;
|
|
1408
|
+
}
|
|
1409
|
+
.max-w-\[75\%\] {
|
|
1410
|
+
max-width: 75%;
|
|
1411
|
+
}
|
|
1253
1412
|
.max-w-full {
|
|
1254
1413
|
max-width: 100%;
|
|
1255
1414
|
}
|
|
@@ -1262,6 +1421,9 @@ video {
|
|
|
1262
1421
|
.flex-1 {
|
|
1263
1422
|
flex: 1 1 0%;
|
|
1264
1423
|
}
|
|
1424
|
+
.flex-\[0_0_226px\] {
|
|
1425
|
+
flex: 0 0 226px;
|
|
1426
|
+
}
|
|
1265
1427
|
.flex-none {
|
|
1266
1428
|
flex: none;
|
|
1267
1429
|
}
|
|
@@ -1286,12 +1448,21 @@ video {
|
|
|
1286
1448
|
.basis-3\/4 {
|
|
1287
1449
|
flex-basis: 75%;
|
|
1288
1450
|
}
|
|
1451
|
+
.basis-\[300px\] {
|
|
1452
|
+
flex-basis: 300px;
|
|
1453
|
+
}
|
|
1289
1454
|
.basis-full {
|
|
1290
1455
|
flex-basis: 100%;
|
|
1291
1456
|
}
|
|
1457
|
+
.border-collapse {
|
|
1458
|
+
border-collapse: collapse;
|
|
1459
|
+
}
|
|
1292
1460
|
.origin-\[0\] {
|
|
1293
1461
|
transform-origin: 0;
|
|
1294
1462
|
}
|
|
1463
|
+
.origin-center {
|
|
1464
|
+
transform-origin: center;
|
|
1465
|
+
}
|
|
1295
1466
|
.-translate-x-1\/2 {
|
|
1296
1467
|
--tw-translate-x: -50%;
|
|
1297
1468
|
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));
|
|
@@ -1320,6 +1491,10 @@ video {
|
|
|
1320
1491
|
--tw-translate-y: -50%;
|
|
1321
1492
|
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));
|
|
1322
1493
|
}
|
|
1494
|
+
.-rotate-45 {
|
|
1495
|
+
--tw-rotate: -45deg;
|
|
1496
|
+
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));
|
|
1497
|
+
}
|
|
1323
1498
|
.rotate-0 {
|
|
1324
1499
|
--tw-rotate: 0deg;
|
|
1325
1500
|
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));
|
|
@@ -1346,6 +1521,11 @@ video {
|
|
|
1346
1521
|
--tw-scale-y: 1;
|
|
1347
1522
|
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));
|
|
1348
1523
|
}
|
|
1524
|
+
.scale-125 {
|
|
1525
|
+
--tw-scale-x: 1.25;
|
|
1526
|
+
--tw-scale-y: 1.25;
|
|
1527
|
+
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));
|
|
1528
|
+
}
|
|
1349
1529
|
.transform {
|
|
1350
1530
|
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));
|
|
1351
1531
|
}
|
|
@@ -1417,6 +1597,9 @@ video {
|
|
|
1417
1597
|
.cursor-default {
|
|
1418
1598
|
cursor: default;
|
|
1419
1599
|
}
|
|
1600
|
+
.cursor-not-allowed {
|
|
1601
|
+
cursor: not-allowed;
|
|
1602
|
+
}
|
|
1420
1603
|
.cursor-pointer {
|
|
1421
1604
|
cursor: pointer;
|
|
1422
1605
|
}
|
|
@@ -1426,6 +1609,10 @@ video {
|
|
|
1426
1609
|
.touch-none {
|
|
1427
1610
|
touch-action: none;
|
|
1428
1611
|
}
|
|
1612
|
+
.touch-pan-y {
|
|
1613
|
+
--tw-pan-y: pan-y;
|
|
1614
|
+
touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom);
|
|
1615
|
+
}
|
|
1429
1616
|
.touch-manipulation {
|
|
1430
1617
|
touch-action: manipulation;
|
|
1431
1618
|
}
|
|
@@ -1491,6 +1678,9 @@ video {
|
|
|
1491
1678
|
.flex-wrap {
|
|
1492
1679
|
flex-wrap: wrap;
|
|
1493
1680
|
}
|
|
1681
|
+
.flex-nowrap {
|
|
1682
|
+
flex-wrap: nowrap;
|
|
1683
|
+
}
|
|
1494
1684
|
.items-start {
|
|
1495
1685
|
align-items: flex-start;
|
|
1496
1686
|
}
|
|
@@ -1503,9 +1693,6 @@ video {
|
|
|
1503
1693
|
.items-baseline {
|
|
1504
1694
|
align-items: baseline;
|
|
1505
1695
|
}
|
|
1506
|
-
.items-stretch {
|
|
1507
|
-
align-items: stretch;
|
|
1508
|
-
}
|
|
1509
1696
|
.justify-start {
|
|
1510
1697
|
justify-content: flex-start;
|
|
1511
1698
|
}
|
|
@@ -1524,12 +1711,21 @@ video {
|
|
|
1524
1711
|
.justify-evenly {
|
|
1525
1712
|
justify-content: space-evenly;
|
|
1526
1713
|
}
|
|
1714
|
+
.justify-items-center {
|
|
1715
|
+
justify-items: center;
|
|
1716
|
+
}
|
|
1527
1717
|
.gap-0 {
|
|
1528
1718
|
gap: 0px;
|
|
1529
1719
|
}
|
|
1530
1720
|
.gap-1 {
|
|
1531
1721
|
gap: 0.25rem;
|
|
1532
1722
|
}
|
|
1723
|
+
.gap-1\.5 {
|
|
1724
|
+
gap: 0.375rem;
|
|
1725
|
+
}
|
|
1726
|
+
.gap-10 {
|
|
1727
|
+
gap: 2.5rem;
|
|
1728
|
+
}
|
|
1533
1729
|
.gap-2 {
|
|
1534
1730
|
gap: 0.5rem;
|
|
1535
1731
|
}
|
|
@@ -1616,6 +1812,9 @@ video {
|
|
|
1616
1812
|
.self-center {
|
|
1617
1813
|
align-self: center;
|
|
1618
1814
|
}
|
|
1815
|
+
.overflow-auto {
|
|
1816
|
+
overflow: auto;
|
|
1817
|
+
}
|
|
1619
1818
|
.overflow-hidden {
|
|
1620
1819
|
overflow: hidden;
|
|
1621
1820
|
}
|
|
@@ -1631,9 +1830,15 @@ video {
|
|
|
1631
1830
|
.overflow-y-auto {
|
|
1632
1831
|
overflow-y: auto;
|
|
1633
1832
|
}
|
|
1833
|
+
.overflow-x-hidden {
|
|
1834
|
+
overflow-x: hidden;
|
|
1835
|
+
}
|
|
1634
1836
|
.overflow-y-hidden {
|
|
1635
1837
|
overflow-y: hidden;
|
|
1636
1838
|
}
|
|
1839
|
+
.overflow-y-scroll {
|
|
1840
|
+
overflow-y: scroll;
|
|
1841
|
+
}
|
|
1637
1842
|
.truncate {
|
|
1638
1843
|
overflow: hidden;
|
|
1639
1844
|
text-overflow: ellipsis;
|
|
@@ -1642,12 +1847,18 @@ video {
|
|
|
1642
1847
|
.text-ellipsis {
|
|
1643
1848
|
text-overflow: ellipsis;
|
|
1644
1849
|
}
|
|
1850
|
+
.whitespace-normal {
|
|
1851
|
+
white-space: normal;
|
|
1852
|
+
}
|
|
1645
1853
|
.whitespace-nowrap {
|
|
1646
1854
|
white-space: nowrap;
|
|
1647
1855
|
}
|
|
1648
1856
|
.text-wrap {
|
|
1649
1857
|
text-wrap: wrap;
|
|
1650
1858
|
}
|
|
1859
|
+
.break-words {
|
|
1860
|
+
overflow-wrap: break-word;
|
|
1861
|
+
}
|
|
1651
1862
|
.break-all {
|
|
1652
1863
|
word-break: break-all;
|
|
1653
1864
|
}
|
|
@@ -1657,6 +1868,12 @@ video {
|
|
|
1657
1868
|
.rounded-2xl {
|
|
1658
1869
|
border-radius: 1rem;
|
|
1659
1870
|
}
|
|
1871
|
+
.rounded-\[20px\] {
|
|
1872
|
+
border-radius: 20px;
|
|
1873
|
+
}
|
|
1874
|
+
.rounded-\[38px\] {
|
|
1875
|
+
border-radius: 38px;
|
|
1876
|
+
}
|
|
1660
1877
|
.rounded-\[4px\] {
|
|
1661
1878
|
border-radius: 4px;
|
|
1662
1879
|
}
|
|
@@ -1704,12 +1921,18 @@ video {
|
|
|
1704
1921
|
.rounded-tl-2xl {
|
|
1705
1922
|
border-top-left-radius: 1rem;
|
|
1706
1923
|
}
|
|
1924
|
+
.rounded-tl-\[32px\] {
|
|
1925
|
+
border-top-left-radius: 32px;
|
|
1926
|
+
}
|
|
1707
1927
|
.rounded-tr {
|
|
1708
1928
|
border-top-right-radius: 0.25rem;
|
|
1709
1929
|
}
|
|
1710
1930
|
.rounded-tr-2xl {
|
|
1711
1931
|
border-top-right-radius: 1rem;
|
|
1712
1932
|
}
|
|
1933
|
+
.rounded-tr-\[32px\] {
|
|
1934
|
+
border-top-right-radius: 32px;
|
|
1935
|
+
}
|
|
1713
1936
|
.border {
|
|
1714
1937
|
border-width: 1px;
|
|
1715
1938
|
}
|
|
@@ -1763,6 +1986,26 @@ video {
|
|
|
1763
1986
|
.\!border-stateColors-error {
|
|
1764
1987
|
border-color: var(--stateColors-error) !important;
|
|
1765
1988
|
}
|
|
1989
|
+
.border-\[\#DDDDDD\] {
|
|
1990
|
+
--tw-border-opacity: 1;
|
|
1991
|
+
border-color: rgb(221 221 221 / var(--tw-border-opacity, 1));
|
|
1992
|
+
}
|
|
1993
|
+
.border-\[\#E3E3E3\] {
|
|
1994
|
+
--tw-border-opacity: 1;
|
|
1995
|
+
border-color: rgb(227 227 227 / var(--tw-border-opacity, 1));
|
|
1996
|
+
}
|
|
1997
|
+
.border-\[\#a9a71d\] {
|
|
1998
|
+
--tw-border-opacity: 1;
|
|
1999
|
+
border-color: rgb(169 167 29 / var(--tw-border-opacity, 1));
|
|
2000
|
+
}
|
|
2001
|
+
.border-\[\#e3e3e3\] {
|
|
2002
|
+
--tw-border-opacity: 1;
|
|
2003
|
+
border-color: rgb(227 227 227 / var(--tw-border-opacity, 1));
|
|
2004
|
+
}
|
|
2005
|
+
.border-\[\#e5e5e5\] {
|
|
2006
|
+
--tw-border-opacity: 1;
|
|
2007
|
+
border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
|
|
2008
|
+
}
|
|
1766
2009
|
.border-black {
|
|
1767
2010
|
--tw-border-opacity: 1;
|
|
1768
2011
|
border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
|
|
@@ -1792,10 +2035,18 @@ video {
|
|
|
1792
2035
|
.border-transparent {
|
|
1793
2036
|
border-color: transparent;
|
|
1794
2037
|
}
|
|
2038
|
+
.border-white {
|
|
2039
|
+
--tw-border-opacity: 1;
|
|
2040
|
+
border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
|
|
2041
|
+
}
|
|
1795
2042
|
.border-y-transparent {
|
|
1796
2043
|
border-top-color: transparent;
|
|
1797
2044
|
border-bottom-color: transparent;
|
|
1798
2045
|
}
|
|
2046
|
+
.border-b-\[\#e5e5e5\] {
|
|
2047
|
+
--tw-border-opacity: 1;
|
|
2048
|
+
border-bottom-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
|
|
2049
|
+
}
|
|
1799
2050
|
.border-l-transparent {
|
|
1800
2051
|
border-left-color: transparent;
|
|
1801
2052
|
}
|
|
@@ -1810,6 +2061,20 @@ video {
|
|
|
1810
2061
|
--tw-bg-opacity: 1;
|
|
1811
2062
|
background-color: rgb(97 46 255 / var(--tw-bg-opacity, 1));
|
|
1812
2063
|
}
|
|
2064
|
+
.bg-\[\#F0F0F0\] {
|
|
2065
|
+
--tw-bg-opacity: 1;
|
|
2066
|
+
background-color: rgb(240 240 240 / var(--tw-bg-opacity, 1));
|
|
2067
|
+
}
|
|
2068
|
+
.bg-\[\#fdffda\] {
|
|
2069
|
+
--tw-bg-opacity: 1;
|
|
2070
|
+
background-color: rgb(253 255 218 / var(--tw-bg-opacity, 1));
|
|
2071
|
+
}
|
|
2072
|
+
.bg-\[var\(--coreColors-pageColor\2c \#ffffff\)\] {
|
|
2073
|
+
background-color: var(--coreColors-pageColor,#ffffff);
|
|
2074
|
+
}
|
|
2075
|
+
.bg-\[var\(--stateColors-skeleton\)\] {
|
|
2076
|
+
background-color: var(--stateColors-skeleton);
|
|
2077
|
+
}
|
|
1813
2078
|
.bg-background {
|
|
1814
2079
|
background-color: hsl(var(--background));
|
|
1815
2080
|
}
|
|
@@ -1817,6 +2082,9 @@ video {
|
|
|
1817
2082
|
--tw-bg-opacity: 1;
|
|
1818
2083
|
background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
|
|
1819
2084
|
}
|
|
2085
|
+
.bg-black\/40 {
|
|
2086
|
+
background-color: rgb(0 0 0 / 0.4);
|
|
2087
|
+
}
|
|
1820
2088
|
.bg-black\/75 {
|
|
1821
2089
|
background-color: rgb(0 0 0 / 0.75);
|
|
1822
2090
|
}
|
|
@@ -1847,6 +2115,9 @@ video {
|
|
|
1847
2115
|
.bg-coreColors-pageColor {
|
|
1848
2116
|
background-color: var(--coreColors-pageColor);
|
|
1849
2117
|
}
|
|
2118
|
+
.bg-current {
|
|
2119
|
+
background-color: currentColor;
|
|
2120
|
+
}
|
|
1850
2121
|
.bg-foreground {
|
|
1851
2122
|
background-color: hsl(var(--foreground));
|
|
1852
2123
|
}
|
|
@@ -1862,6 +2133,10 @@ video {
|
|
|
1862
2133
|
--tw-bg-opacity: 1;
|
|
1863
2134
|
background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
|
|
1864
2135
|
}
|
|
2136
|
+
.bg-green-500 {
|
|
2137
|
+
--tw-bg-opacity: 1;
|
|
2138
|
+
background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
|
|
2139
|
+
}
|
|
1865
2140
|
.bg-productBadging-fill {
|
|
1866
2141
|
background-color: var(--productBadging-fill);
|
|
1867
2142
|
}
|
|
@@ -1897,6 +2172,9 @@ video {
|
|
|
1897
2172
|
.bg-opacity-70 {
|
|
1898
2173
|
--tw-bg-opacity: 0.7;
|
|
1899
2174
|
}
|
|
2175
|
+
.bg-\[linear-gradient\(180deg\2c _\#FFF_0\%\2c _rgba\(255\2c 255\2c 255\2c 0\.94\)_20\.19\%\2c _rgba\(255\2c 255\2c 255\2c 0\.65\)_64\.9\%\2c _rgba\(255\2c 255\2c 255\2c 0\.00\)_100\%\)\] {
|
|
2176
|
+
background-image: linear-gradient(180deg, #FFF 0%, rgba(255,255,255,0.94) 20.19%, rgba(255,255,255,0.65) 64.9%, rgba(255,255,255,0.00) 100%);
|
|
2177
|
+
}
|
|
1900
2178
|
.bg-fade-left {
|
|
1901
2179
|
background-image: linear-gradient(to right, var(--coreColors-pageColor) 0%, #ffffff00 100%);;
|
|
1902
2180
|
}
|
|
@@ -1950,12 +2228,18 @@ video {
|
|
|
1950
2228
|
.p-4 {
|
|
1951
2229
|
padding: 1rem;
|
|
1952
2230
|
}
|
|
2231
|
+
.p-5 {
|
|
2232
|
+
padding: 1.25rem;
|
|
2233
|
+
}
|
|
1953
2234
|
.p-6 {
|
|
1954
2235
|
padding: 1.5rem;
|
|
1955
2236
|
}
|
|
1956
2237
|
.p-\[1px\] {
|
|
1957
2238
|
padding: 1px;
|
|
1958
2239
|
}
|
|
2240
|
+
.p-\[2\.5px\] {
|
|
2241
|
+
padding: 2.5px;
|
|
2242
|
+
}
|
|
1959
2243
|
.px-0 {
|
|
1960
2244
|
padding-left: 0px;
|
|
1961
2245
|
padding-right: 0px;
|
|
@@ -1964,6 +2248,10 @@ video {
|
|
|
1964
2248
|
padding-left: 0.25rem;
|
|
1965
2249
|
padding-right: 0.25rem;
|
|
1966
2250
|
}
|
|
2251
|
+
.px-1\.5 {
|
|
2252
|
+
padding-left: 0.375rem;
|
|
2253
|
+
padding-right: 0.375rem;
|
|
2254
|
+
}
|
|
1967
2255
|
.px-2 {
|
|
1968
2256
|
padding-left: 0.5rem;
|
|
1969
2257
|
padding-right: 0.5rem;
|
|
@@ -1992,14 +2280,26 @@ video {
|
|
|
1992
2280
|
padding-left: 2rem;
|
|
1993
2281
|
padding-right: 2rem;
|
|
1994
2282
|
}
|
|
2283
|
+
.px-\[7px\] {
|
|
2284
|
+
padding-left: 7px;
|
|
2285
|
+
padding-right: 7px;
|
|
2286
|
+
}
|
|
1995
2287
|
.py-0 {
|
|
1996
2288
|
padding-top: 0px;
|
|
1997
2289
|
padding-bottom: 0px;
|
|
1998
2290
|
}
|
|
2291
|
+
.py-0\.5 {
|
|
2292
|
+
padding-top: 0.125rem;
|
|
2293
|
+
padding-bottom: 0.125rem;
|
|
2294
|
+
}
|
|
1999
2295
|
.py-1 {
|
|
2000
2296
|
padding-top: 0.25rem;
|
|
2001
2297
|
padding-bottom: 0.25rem;
|
|
2002
2298
|
}
|
|
2299
|
+
.py-10 {
|
|
2300
|
+
padding-top: 2.5rem;
|
|
2301
|
+
padding-bottom: 2.5rem;
|
|
2302
|
+
}
|
|
2003
2303
|
.py-12 {
|
|
2004
2304
|
padding-top: 3rem;
|
|
2005
2305
|
padding-bottom: 3rem;
|
|
@@ -2008,6 +2308,10 @@ video {
|
|
|
2008
2308
|
padding-top: 0.5rem;
|
|
2009
2309
|
padding-bottom: 0.5rem;
|
|
2010
2310
|
}
|
|
2311
|
+
.py-2\.5 {
|
|
2312
|
+
padding-top: 0.625rem;
|
|
2313
|
+
padding-bottom: 0.625rem;
|
|
2314
|
+
}
|
|
2011
2315
|
.py-3 {
|
|
2012
2316
|
padding-top: 0.75rem;
|
|
2013
2317
|
padding-bottom: 0.75rem;
|
|
@@ -2016,12 +2320,19 @@ video {
|
|
|
2016
2320
|
padding-top: 1rem;
|
|
2017
2321
|
padding-bottom: 1rem;
|
|
2018
2322
|
}
|
|
2323
|
+
.py-8 {
|
|
2324
|
+
padding-top: 2rem;
|
|
2325
|
+
padding-bottom: 2rem;
|
|
2326
|
+
}
|
|
2019
2327
|
.pb-0 {
|
|
2020
2328
|
padding-bottom: 0px;
|
|
2021
2329
|
}
|
|
2022
2330
|
.pb-1 {
|
|
2023
2331
|
padding-bottom: 0.25rem;
|
|
2024
2332
|
}
|
|
2333
|
+
.pb-10 {
|
|
2334
|
+
padding-bottom: 2.5rem;
|
|
2335
|
+
}
|
|
2025
2336
|
.pb-2 {
|
|
2026
2337
|
padding-bottom: 0.5rem;
|
|
2027
2338
|
}
|
|
@@ -2034,6 +2345,9 @@ video {
|
|
|
2034
2345
|
.pb-8 {
|
|
2035
2346
|
padding-bottom: 2rem;
|
|
2036
2347
|
}
|
|
2348
|
+
.pb-\[50px\] {
|
|
2349
|
+
padding-bottom: 50px;
|
|
2350
|
+
}
|
|
2037
2351
|
.pl-0 {
|
|
2038
2352
|
padding-left: 0px;
|
|
2039
2353
|
}
|
|
@@ -2043,15 +2357,18 @@ video {
|
|
|
2043
2357
|
.pl-2 {
|
|
2044
2358
|
padding-left: 0.5rem;
|
|
2045
2359
|
}
|
|
2046
|
-
.pl-3 {
|
|
2047
|
-
padding-left: 0.75rem;
|
|
2048
|
-
}
|
|
2049
2360
|
.pl-4 {
|
|
2050
2361
|
padding-left: 1rem;
|
|
2051
2362
|
}
|
|
2052
2363
|
.pl-8 {
|
|
2053
2364
|
padding-left: 2rem;
|
|
2054
2365
|
}
|
|
2366
|
+
.pl-\[10px\] {
|
|
2367
|
+
padding-left: 10px;
|
|
2368
|
+
}
|
|
2369
|
+
.pl-\[9px\] {
|
|
2370
|
+
padding-left: 9px;
|
|
2371
|
+
}
|
|
2055
2372
|
.pr-0 {
|
|
2056
2373
|
padding-right: 0px;
|
|
2057
2374
|
}
|
|
@@ -2067,12 +2384,21 @@ video {
|
|
|
2067
2384
|
.pt-0 {
|
|
2068
2385
|
padding-top: 0px;
|
|
2069
2386
|
}
|
|
2387
|
+
.pt-1 {
|
|
2388
|
+
padding-top: 0.25rem;
|
|
2389
|
+
}
|
|
2390
|
+
.pt-10 {
|
|
2391
|
+
padding-top: 2.5rem;
|
|
2392
|
+
}
|
|
2070
2393
|
.pt-12 {
|
|
2071
2394
|
padding-top: 3rem;
|
|
2072
2395
|
}
|
|
2073
2396
|
.pt-2 {
|
|
2074
2397
|
padding-top: 0.5rem;
|
|
2075
2398
|
}
|
|
2399
|
+
.pt-3 {
|
|
2400
|
+
padding-top: 0.75rem;
|
|
2401
|
+
}
|
|
2076
2402
|
.pt-4 {
|
|
2077
2403
|
padding-top: 1rem;
|
|
2078
2404
|
}
|
|
@@ -2097,6 +2423,9 @@ video {
|
|
|
2097
2423
|
.align-top {
|
|
2098
2424
|
vertical-align: top;
|
|
2099
2425
|
}
|
|
2426
|
+
.font-\[-apple-system\2c BlinkMacSystemFont\2c Roboto\2c Helvetica\2c Arial\2c sans-serif\] {
|
|
2427
|
+
font-family: -apple-system,BlinkMacSystemFont,Roboto,Helvetica,Arial,sans-serif;
|
|
2428
|
+
}
|
|
2100
2429
|
.font-fontRegular {
|
|
2101
2430
|
font-family: var(--fontRegular);
|
|
2102
2431
|
}
|
|
@@ -2104,12 +2433,21 @@ video {
|
|
|
2104
2433
|
font-size: 3rem;
|
|
2105
2434
|
line-height: 1;
|
|
2106
2435
|
}
|
|
2436
|
+
.text-\[0\.95rem\] {
|
|
2437
|
+
font-size: 0.95rem;
|
|
2438
|
+
}
|
|
2107
2439
|
.text-\[10px\] {
|
|
2108
2440
|
font-size: 10px;
|
|
2109
2441
|
}
|
|
2442
|
+
.text-\[11px\] {
|
|
2443
|
+
font-size: 11px;
|
|
2444
|
+
}
|
|
2110
2445
|
.text-\[12px\] {
|
|
2111
2446
|
font-size: 12px;
|
|
2112
2447
|
}
|
|
2448
|
+
.text-\[13px\] {
|
|
2449
|
+
font-size: 13px;
|
|
2450
|
+
}
|
|
2113
2451
|
.text-\[14px\] {
|
|
2114
2452
|
font-size: 14px;
|
|
2115
2453
|
}
|
|
@@ -2159,12 +2497,18 @@ video {
|
|
|
2159
2497
|
.capitalize {
|
|
2160
2498
|
text-transform: capitalize;
|
|
2161
2499
|
}
|
|
2500
|
+
.normal-case {
|
|
2501
|
+
text-transform: none;
|
|
2502
|
+
}
|
|
2162
2503
|
.italic {
|
|
2163
2504
|
font-style: italic;
|
|
2164
2505
|
}
|
|
2165
2506
|
.leading-6 {
|
|
2166
2507
|
line-height: 1.5rem;
|
|
2167
2508
|
}
|
|
2509
|
+
.leading-\[1\.2\] {
|
|
2510
|
+
line-height: 1.2;
|
|
2511
|
+
}
|
|
2168
2512
|
.leading-\[120\%\] {
|
|
2169
2513
|
line-height: 120%;
|
|
2170
2514
|
}
|
|
@@ -2183,13 +2527,42 @@ video {
|
|
|
2183
2527
|
.leading-none {
|
|
2184
2528
|
line-height: 1;
|
|
2185
2529
|
}
|
|
2530
|
+
.leading-tight {
|
|
2531
|
+
line-height: 1.25;
|
|
2532
|
+
}
|
|
2186
2533
|
.tracking-tight {
|
|
2187
2534
|
letter-spacing: -0.025em;
|
|
2188
2535
|
}
|
|
2536
|
+
.text-\[\#666666\] {
|
|
2537
|
+
--tw-text-opacity: 1;
|
|
2538
|
+
color: rgb(102 102 102 / var(--tw-text-opacity, 1));
|
|
2539
|
+
}
|
|
2540
|
+
.text-\[\#666\] {
|
|
2541
|
+
--tw-text-opacity: 1;
|
|
2542
|
+
color: rgb(102 102 102 / var(--tw-text-opacity, 1));
|
|
2543
|
+
}
|
|
2189
2544
|
.text-\[\#727272\] {
|
|
2190
2545
|
--tw-text-opacity: 1;
|
|
2191
2546
|
color: rgb(114 114 114 / var(--tw-text-opacity, 1));
|
|
2192
2547
|
}
|
|
2548
|
+
.text-\[\#888\] {
|
|
2549
|
+
--tw-text-opacity: 1;
|
|
2550
|
+
color: rgb(136 136 136 / var(--tw-text-opacity, 1));
|
|
2551
|
+
}
|
|
2552
|
+
.text-\[\#999999\] {
|
|
2553
|
+
--tw-text-opacity: 1;
|
|
2554
|
+
color: rgb(153 153 153 / var(--tw-text-opacity, 1));
|
|
2555
|
+
}
|
|
2556
|
+
.text-\[\#9ca3af\] {
|
|
2557
|
+
--tw-text-opacity: 1;
|
|
2558
|
+
color: rgb(156 163 175 / var(--tw-text-opacity, 1));
|
|
2559
|
+
}
|
|
2560
|
+
.text-\[var\(--coreColors-brandColorPrimary\)\] {
|
|
2561
|
+
color: var(--coreColors-brandColorPrimary);
|
|
2562
|
+
}
|
|
2563
|
+
.text-\[var\(--textColors-secondaryColor\)\] {
|
|
2564
|
+
color: var(--textColors-secondaryColor);
|
|
2565
|
+
}
|
|
2193
2566
|
.text-black {
|
|
2194
2567
|
--tw-text-opacity: 1;
|
|
2195
2568
|
color: rgb(0 0 0 / var(--tw-text-opacity, 1));
|
|
@@ -2282,6 +2655,13 @@ video {
|
|
|
2282
2655
|
--tw-text-opacity: 1;
|
|
2283
2656
|
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
|
2284
2657
|
}
|
|
2658
|
+
.text-gray-600 {
|
|
2659
|
+
--tw-text-opacity: 1;
|
|
2660
|
+
color: rgb(75 85 99 / var(--tw-text-opacity, 1));
|
|
2661
|
+
}
|
|
2662
|
+
.text-inherit {
|
|
2663
|
+
color: inherit;
|
|
2664
|
+
}
|
|
2285
2665
|
.text-muted-foreground {
|
|
2286
2666
|
color: hsl(var(--muted-foreground));
|
|
2287
2667
|
}
|
|
@@ -2354,6 +2734,9 @@ video {
|
|
|
2354
2734
|
.line-through {
|
|
2355
2735
|
text-decoration-line: line-through;
|
|
2356
2736
|
}
|
|
2737
|
+
.no-underline {
|
|
2738
|
+
text-decoration-line: none;
|
|
2739
|
+
}
|
|
2357
2740
|
.underline-offset-4 {
|
|
2358
2741
|
text-underline-offset: 4px;
|
|
2359
2742
|
}
|
|
@@ -2476,6 +2859,16 @@ video {
|
|
|
2476
2859
|
.filter {
|
|
2477
2860
|
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);
|
|
2478
2861
|
}
|
|
2862
|
+
.backdrop-blur-\[1\.5px\] {
|
|
2863
|
+
--tw-backdrop-blur: blur(1.5px);
|
|
2864
|
+
-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
2865
|
+
backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
2866
|
+
}
|
|
2867
|
+
.backdrop-blur-\[20px\] {
|
|
2868
|
+
--tw-backdrop-blur: blur(20px);
|
|
2869
|
+
-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
2870
|
+
backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
2871
|
+
}
|
|
2479
2872
|
.transition {
|
|
2480
2873
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
2481
2874
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
@@ -2483,11 +2876,26 @@ video {
|
|
|
2483
2876
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2484
2877
|
transition-duration: 150ms;
|
|
2485
2878
|
}
|
|
2879
|
+
.transition-\[ease-out\] {
|
|
2880
|
+
transition-property: ease-out;
|
|
2881
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2882
|
+
transition-duration: 150ms;
|
|
2883
|
+
}
|
|
2486
2884
|
.transition-\[height\] {
|
|
2487
2885
|
transition-property: height;
|
|
2488
2886
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2489
2887
|
transition-duration: 150ms;
|
|
2490
2888
|
}
|
|
2889
|
+
.transition-\[max-height\] {
|
|
2890
|
+
transition-property: max-height;
|
|
2891
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2892
|
+
transition-duration: 150ms;
|
|
2893
|
+
}
|
|
2894
|
+
.transition-\[width\] {
|
|
2895
|
+
transition-property: width;
|
|
2896
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2897
|
+
transition-duration: 150ms;
|
|
2898
|
+
}
|
|
2491
2899
|
.transition-all {
|
|
2492
2900
|
transition-property: all;
|
|
2493
2901
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -2508,6 +2916,9 @@ video {
|
|
|
2508
2916
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2509
2917
|
transition-duration: 150ms;
|
|
2510
2918
|
}
|
|
2919
|
+
.duration-100 {
|
|
2920
|
+
transition-duration: 100ms;
|
|
2921
|
+
}
|
|
2511
2922
|
.duration-1000 {
|
|
2512
2923
|
transition-duration: 1000ms;
|
|
2513
2924
|
}
|
|
@@ -2529,6 +2940,9 @@ video {
|
|
|
2529
2940
|
.ease-in-out {
|
|
2530
2941
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2531
2942
|
}
|
|
2943
|
+
.ease-linear {
|
|
2944
|
+
transition-timing-function: linear;
|
|
2945
|
+
}
|
|
2532
2946
|
.ease-out {
|
|
2533
2947
|
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
2534
2948
|
}
|
|
@@ -2549,6 +2963,9 @@ video {
|
|
|
2549
2963
|
.fade-in {
|
|
2550
2964
|
--tw-enter-opacity: 0;
|
|
2551
2965
|
}
|
|
2966
|
+
.duration-100 {
|
|
2967
|
+
animation-duration: 100ms;
|
|
2968
|
+
}
|
|
2552
2969
|
.duration-1000 {
|
|
2553
2970
|
animation-duration: 1000ms;
|
|
2554
2971
|
}
|
|
@@ -2570,6 +2987,9 @@ video {
|
|
|
2570
2987
|
.ease-in-out {
|
|
2571
2988
|
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2572
2989
|
}
|
|
2990
|
+
.ease-linear {
|
|
2991
|
+
animation-timing-function: linear;
|
|
2992
|
+
}
|
|
2573
2993
|
.ease-out {
|
|
2574
2994
|
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
2575
2995
|
}
|
|
@@ -2593,14 +3013,24 @@ video {
|
|
|
2593
3013
|
.\[animation-delay\:-0\.3s\] {
|
|
2594
3014
|
animation-delay: -0.3s;
|
|
2595
3015
|
}
|
|
2596
|
-
.\[
|
|
2597
|
-
-
|
|
2598
|
-
-moz-appearance: textfield;
|
|
2599
|
-
appearance: textfield;
|
|
3016
|
+
.\[backface-visibility\:hidden\] {
|
|
3017
|
+
backface-visibility: hidden;
|
|
2600
3018
|
}
|
|
2601
3019
|
.\[scrollbar-width\:none\] {
|
|
2602
3020
|
scrollbar-width: none;
|
|
2603
3021
|
}
|
|
3022
|
+
.\[text-shadow\:0_2px_3px_rgba\(0\2c 0\2c 0\2c 0\.25\)\] {
|
|
3023
|
+
text-shadow: 0 2px 3px rgba(0,0,0,0.25);
|
|
3024
|
+
}
|
|
3025
|
+
.\[text-wrap\:wrap\] {
|
|
3026
|
+
text-wrap: wrap;
|
|
3027
|
+
}
|
|
3028
|
+
.\[transform\:translate3d\(0\2c 0\2c 0\)\] {
|
|
3029
|
+
transform: translate3d(0,0,0);
|
|
3030
|
+
}
|
|
3031
|
+
.\[transform\:translateZ\(0\)\] {
|
|
3032
|
+
transform: translateZ(0);
|
|
3033
|
+
}
|
|
2604
3034
|
|
|
2605
3035
|
body::-webkit-scrollbar {
|
|
2606
3036
|
display: none;
|
|
@@ -3117,16 +3547,6 @@ body::-webkit-scrollbar {
|
|
|
3117
3547
|
color: var(--stateColors-error);
|
|
3118
3548
|
}
|
|
3119
3549
|
|
|
3120
|
-
.\[\&\:\:-webkit-inner-spin-button\]\:appearance-none::-webkit-inner-spin-button {
|
|
3121
|
-
-webkit-appearance: none;
|
|
3122
|
-
appearance: none;
|
|
3123
|
-
}
|
|
3124
|
-
|
|
3125
|
-
.\[\&\:\:-webkit-outer-spin-button\]\:appearance-none::-webkit-outer-spin-button {
|
|
3126
|
-
-webkit-appearance: none;
|
|
3127
|
-
appearance: none;
|
|
3128
|
-
}
|
|
3129
|
-
|
|
3130
3550
|
.\[\&\:\:-webkit-scrollbar\]\:hidden::-webkit-scrollbar {
|
|
3131
3551
|
display: none;
|
|
3132
3552
|
}
|