@kompasid/lit-web-components 0.6.3 → 0.6.6
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/assets/kompas-free-trial.png +0 -0
- package/assets/qr-code.png +0 -0
- package/demo/index.html +33 -2
- package/dist/src/components/kompasid-header-account/KompasHeaderAccount.d.ts +27 -0
- package/dist/src/components/kompasid-header-account/KompasHeaderAccount.js +233 -0
- package/dist/src/components/kompasid-header-account/KompasHeaderAccount.js.map +1 -0
- package/dist/src/components/kompasid-header-account/types.d.ts +8 -0
- package/dist/src/components/kompasid-header-account/types.js +2 -0
- package/dist/src/components/kompasid-header-account/types.js.map +1 -0
- package/dist/src/components/kompasid-header-account-help-center/KompasHeaderAccountHelpCenter.d.ts +13 -0
- package/dist/src/components/kompasid-header-account-help-center/KompasHeaderAccountHelpCenter.js +172 -0
- package/dist/src/components/kompasid-header-account-help-center/KompasHeaderAccountHelpCenter.js.map +1 -0
- package/dist/src/components/kompasid-header-account-menu/KompasHeaderAccountMenu.d.ts +37 -0
- package/dist/src/components/kompasid-header-account-menu/KompasHeaderAccountMenu.js +185 -0
- package/dist/src/components/kompasid-header-account-menu/KompasHeaderAccountMenu.js.map +1 -0
- package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.d.ts +12 -0
- package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.js +172 -0
- package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.js.map +1 -0
- package/dist/src/components/kompasid-metered-wall-register/KompasMeteredWallRegister.js +8 -8
- package/dist/src/components/kompasid-metered-wall-register/KompasMeteredWallRegister.js.map +1 -1
- package/dist/src/components/kompasid-paywall/KompasPaywall.js +7 -20
- package/dist/src/components/kompasid-paywall/KompasPaywall.js.map +1 -1
- package/dist/src/components/kompasid-paywall/types.d.ts +5 -0
- package/dist/src/components/kompasid-paywall/types.js.map +1 -1
- package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.d.ts +4 -0
- package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js +178 -28
- package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.js +1 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/utils/text.d.ts +2 -0
- package/dist/src/utils/text.js +9 -0
- package/dist/src/utils/text.js.map +1 -0
- package/dist/tailwind/tailwind.js +391 -5
- package/dist/tailwind/tailwind.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/kompasid-header-account/KompasHeaderAccount.ts +197 -0
- package/src/components/kompasid-header-account/types.ts +8 -0
- package/src/components/kompasid-header-account-help-center/KompasHeaderAccountHelpCenter.ts +177 -0
- package/src/components/kompasid-header-account-menu/KompasHeaderAccountMenu.ts +172 -0
- package/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.ts +161 -0
- package/src/components/kompasid-metered-wall-register/KompasMeteredWallRegister.ts +8 -8
- package/src/components/kompasid-paywall/KompasPaywall.ts +7 -20
- package/src/components/kompasid-paywall/types.ts +5 -0
- package/src/components/kompasid-paywall-body/KompasPaywallBody.ts +189 -36
- package/src/index.ts +1 -0
- package/src/utils/text.ts +9 -0
- package/tailwind/tailwind.css +382 -5
- package/tailwind/tailwind.ts +391 -5
package/tailwind/tailwind.ts
CHANGED
|
@@ -628,6 +628,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
628
628
|
margin: auto;
|
|
629
629
|
}
|
|
630
630
|
|
|
631
|
+
.mx-1 {
|
|
632
|
+
margin-left: 0.25rem;
|
|
633
|
+
margin-right: 0.25rem;
|
|
634
|
+
}
|
|
635
|
+
|
|
631
636
|
.mx-2 {
|
|
632
637
|
margin-left: 0.5rem;
|
|
633
638
|
margin-right: 0.5rem;
|
|
@@ -690,6 +695,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
690
695
|
margin-bottom: 1rem;
|
|
691
696
|
}
|
|
692
697
|
|
|
698
|
+
.mb-5 {
|
|
699
|
+
margin-bottom: 1.25rem;
|
|
700
|
+
}
|
|
701
|
+
|
|
693
702
|
.ml-0 {
|
|
694
703
|
margin-left: 0px;
|
|
695
704
|
}
|
|
@@ -726,6 +735,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
726
735
|
margin-right: 2.5rem;
|
|
727
736
|
}
|
|
728
737
|
|
|
738
|
+
.mr-2 {
|
|
739
|
+
margin-right: 0.5rem;
|
|
740
|
+
}
|
|
741
|
+
|
|
729
742
|
.mr-3 {
|
|
730
743
|
margin-right: 0.75rem;
|
|
731
744
|
}
|
|
@@ -766,6 +779,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
766
779
|
margin-top: 2rem;
|
|
767
780
|
}
|
|
768
781
|
|
|
782
|
+
.mr-6 {
|
|
783
|
+
margin-right: 1.5rem;
|
|
784
|
+
}
|
|
785
|
+
|
|
769
786
|
.block {
|
|
770
787
|
display: block;
|
|
771
788
|
}
|
|
@@ -786,6 +803,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
786
803
|
height: 2.5rem;
|
|
787
804
|
}
|
|
788
805
|
|
|
806
|
+
.h-16 {
|
|
807
|
+
height: 4rem;
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
.h-2 {
|
|
811
|
+
height: 0.5rem;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
.h-2\\.5 {
|
|
815
|
+
height: 0.625rem;
|
|
816
|
+
}
|
|
817
|
+
|
|
789
818
|
.h-20 {
|
|
790
819
|
height: 5rem;
|
|
791
820
|
}
|
|
@@ -806,6 +835,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
806
835
|
height: 1.25rem;
|
|
807
836
|
}
|
|
808
837
|
|
|
838
|
+
.h-6 {
|
|
839
|
+
height: 1.5rem;
|
|
840
|
+
}
|
|
841
|
+
|
|
809
842
|
.h-8 {
|
|
810
843
|
height: 2rem;
|
|
811
844
|
}
|
|
@@ -818,6 +851,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
818
851
|
height: 17px;
|
|
819
852
|
}
|
|
820
853
|
|
|
854
|
+
.h-\\[49px\\] {
|
|
855
|
+
height: 49px;
|
|
856
|
+
}
|
|
857
|
+
|
|
821
858
|
.h-\\[68px\\] {
|
|
822
859
|
height: 68px;
|
|
823
860
|
}
|
|
@@ -839,6 +876,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
839
876
|
height: max-content;
|
|
840
877
|
}
|
|
841
878
|
|
|
879
|
+
.h-12 {
|
|
880
|
+
height: 3rem;
|
|
881
|
+
}
|
|
882
|
+
|
|
883
|
+
.w-1\\/2 {
|
|
884
|
+
width: 50%;
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
.w-1\\/4 {
|
|
888
|
+
width: 25%;
|
|
889
|
+
}
|
|
890
|
+
|
|
842
891
|
.w-1\\/5 {
|
|
843
892
|
width: 20%;
|
|
844
893
|
}
|
|
@@ -847,6 +896,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
847
896
|
width: 2.5rem;
|
|
848
897
|
}
|
|
849
898
|
|
|
899
|
+
.w-16 {
|
|
900
|
+
width: 4rem;
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
.w-2 {
|
|
904
|
+
width: 0.5rem;
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
.w-2\\.5 {
|
|
908
|
+
width: 0.625rem;
|
|
909
|
+
}
|
|
910
|
+
|
|
850
911
|
.w-20 {
|
|
851
912
|
width: 5rem;
|
|
852
913
|
}
|
|
@@ -867,14 +928,26 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
867
928
|
width: 1.25rem;
|
|
868
929
|
}
|
|
869
930
|
|
|
931
|
+
.w-6 {
|
|
932
|
+
width: 1.5rem;
|
|
933
|
+
}
|
|
934
|
+
|
|
870
935
|
.w-60 {
|
|
871
936
|
width: 15rem;
|
|
872
937
|
}
|
|
873
938
|
|
|
939
|
+
.w-76 {
|
|
940
|
+
width: 19rem;
|
|
941
|
+
}
|
|
942
|
+
|
|
874
943
|
.w-8 {
|
|
875
944
|
width: 2rem;
|
|
876
945
|
}
|
|
877
946
|
|
|
947
|
+
.w-80 {
|
|
948
|
+
width: 20rem;
|
|
949
|
+
}
|
|
950
|
+
|
|
878
951
|
.w-9 {
|
|
879
952
|
width: 2.25rem;
|
|
880
953
|
}
|
|
@@ -903,6 +976,30 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
903
976
|
width: 100%;
|
|
904
977
|
}
|
|
905
978
|
|
|
979
|
+
.w-1\\/3 {
|
|
980
|
+
width: 33.333333%;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
.w-3\\/4 {
|
|
984
|
+
width: 75%;
|
|
985
|
+
}
|
|
986
|
+
|
|
987
|
+
.w-4\\/5 {
|
|
988
|
+
width: 80%;
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
.w-2\\/4 {
|
|
992
|
+
width: 50%;
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
.w-2\\/3 {
|
|
996
|
+
width: 66.666667%;
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
.w-11\\/12 {
|
|
1000
|
+
width: 91.666667%;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
906
1003
|
.max-w-7xl {
|
|
907
1004
|
max-width: 80rem;
|
|
908
1005
|
}
|
|
@@ -927,6 +1024,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
927
1024
|
flex: none;
|
|
928
1025
|
}
|
|
929
1026
|
|
|
1027
|
+
.flex-shrink-0 {
|
|
1028
|
+
flex-shrink: 0;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
930
1031
|
.shrink-0 {
|
|
931
1032
|
flex-shrink: 0;
|
|
932
1033
|
}
|
|
@@ -948,6 +1049,16 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
948
1049
|
scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
949
1050
|
}
|
|
950
1051
|
|
|
1052
|
+
@keyframes pulse {
|
|
1053
|
+
50% {
|
|
1054
|
+
opacity: 0.5;
|
|
1055
|
+
}
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
.animate-pulse {
|
|
1059
|
+
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
951
1062
|
.cursor-pointer {
|
|
952
1063
|
cursor: pointer;
|
|
953
1064
|
}
|
|
@@ -1012,6 +1123,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1012
1123
|
justify-content: flex-start;
|
|
1013
1124
|
}
|
|
1014
1125
|
|
|
1126
|
+
.justify-end {
|
|
1127
|
+
justify-content: flex-end;
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1015
1130
|
.justify-center {
|
|
1016
1131
|
justify-content: center;
|
|
1017
1132
|
}
|
|
@@ -1036,6 +1151,14 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1036
1151
|
gap: 2rem;
|
|
1037
1152
|
}
|
|
1038
1153
|
|
|
1154
|
+
.gap-2 {
|
|
1155
|
+
gap: 0.5rem;
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
.gap-y-2 {
|
|
1159
|
+
row-gap: 0.5rem;
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1039
1162
|
.gap-y-4 {
|
|
1040
1163
|
row-gap: 1rem;
|
|
1041
1164
|
}
|
|
@@ -1084,6 +1207,12 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1084
1207
|
overflow: hidden;
|
|
1085
1208
|
}
|
|
1086
1209
|
|
|
1210
|
+
.truncate {
|
|
1211
|
+
overflow: hidden;
|
|
1212
|
+
text-overflow: ellipsis;
|
|
1213
|
+
white-space: nowrap;
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1087
1216
|
.whitespace-nowrap {
|
|
1088
1217
|
white-space: nowrap;
|
|
1089
1218
|
}
|
|
@@ -1096,6 +1225,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1096
1225
|
border-radius: 10px;
|
|
1097
1226
|
}
|
|
1098
1227
|
|
|
1228
|
+
.rounded-full {
|
|
1229
|
+
border-radius: 9999px;
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1099
1232
|
.rounded-lg {
|
|
1100
1233
|
border-radius: 0.5rem;
|
|
1101
1234
|
}
|
|
@@ -1104,6 +1237,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1104
1237
|
border-radius: 0.375rem;
|
|
1105
1238
|
}
|
|
1106
1239
|
|
|
1240
|
+
.rounded-sm {
|
|
1241
|
+
border-radius: 0.125rem;
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1107
1244
|
.rounded-xl {
|
|
1108
1245
|
border-radius: 0.75rem;
|
|
1109
1246
|
}
|
|
@@ -1173,6 +1310,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1173
1310
|
border-color: rgb(238 238 238 / var(--tw-border-opacity));
|
|
1174
1311
|
}
|
|
1175
1312
|
|
|
1313
|
+
.border-grey-300 {
|
|
1314
|
+
--tw-border-opacity: 1;
|
|
1315
|
+
border-color: rgb(221 221 221 / var(--tw-border-opacity));
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1176
1318
|
.border-grey-400 {
|
|
1177
1319
|
--tw-border-opacity: 1;
|
|
1178
1320
|
border-color: rgb(153 153 153 / var(--tw-border-opacity));
|
|
@@ -1258,6 +1400,16 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1258
1400
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1259
1401
|
}
|
|
1260
1402
|
|
|
1403
|
+
.bg-grey-200 {
|
|
1404
|
+
--tw-bg-opacity: 1;
|
|
1405
|
+
background-color: rgb(238 238 238 / var(--tw-bg-opacity));
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
.bg-grey-300 {
|
|
1409
|
+
--tw-bg-opacity: 1;
|
|
1410
|
+
background-color: rgb(221 221 221 / var(--tw-bg-opacity));
|
|
1411
|
+
}
|
|
1412
|
+
|
|
1261
1413
|
.bg-grey-600 {
|
|
1262
1414
|
--tw-bg-opacity: 1;
|
|
1263
1415
|
background-color: rgb(51 51 51 / var(--tw-bg-opacity));
|
|
@@ -1273,6 +1425,21 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1273
1425
|
background-color: rgb(255 220 63 / var(--tw-bg-opacity));
|
|
1274
1426
|
}
|
|
1275
1427
|
|
|
1428
|
+
.bg-red-300 {
|
|
1429
|
+
--tw-bg-opacity: 1;
|
|
1430
|
+
background-color: rgb(247 100 76 / var(--tw-bg-opacity));
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
.bg-red-500 {
|
|
1434
|
+
--tw-bg-opacity: 1;
|
|
1435
|
+
background-color: rgb(208 13 18 / var(--tw-bg-opacity));
|
|
1436
|
+
}
|
|
1437
|
+
|
|
1438
|
+
.bg-red-400 {
|
|
1439
|
+
--tw-bg-opacity: 1;
|
|
1440
|
+
background-color: rgb(243 32 19 / var(--tw-bg-opacity));
|
|
1441
|
+
}
|
|
1442
|
+
|
|
1276
1443
|
.bg-opacity-75 {
|
|
1277
1444
|
--tw-bg-opacity: 0.75;
|
|
1278
1445
|
}
|
|
@@ -1287,6 +1454,14 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1287
1454
|
object-fit: scale-down;
|
|
1288
1455
|
}
|
|
1289
1456
|
|
|
1457
|
+
.p-1 {
|
|
1458
|
+
padding: 0.25rem;
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1461
|
+
.p-1\\.5 {
|
|
1462
|
+
padding: 0.375rem;
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1290
1465
|
.p-2 {
|
|
1291
1466
|
padding: 0.5rem;
|
|
1292
1467
|
}
|
|
@@ -1299,21 +1474,38 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1299
1474
|
padding: 1rem;
|
|
1300
1475
|
}
|
|
1301
1476
|
|
|
1477
|
+
.p-5 {
|
|
1478
|
+
padding: 1.25rem;
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
.p-8 {
|
|
1482
|
+
padding: 2rem;
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1485
|
+
.p-6 {
|
|
1486
|
+
padding: 1.5rem;
|
|
1487
|
+
}
|
|
1488
|
+
|
|
1489
|
+
.px-10 {
|
|
1490
|
+
padding-left: 2.5rem;
|
|
1491
|
+
padding-right: 2.5rem;
|
|
1492
|
+
}
|
|
1493
|
+
|
|
1302
1494
|
.px-2 {
|
|
1303
1495
|
padding-left: 0.5rem;
|
|
1304
1496
|
padding-right: 0.5rem;
|
|
1305
1497
|
}
|
|
1306
1498
|
|
|
1499
|
+
.px-3 {
|
|
1500
|
+
padding-left: 0.75rem;
|
|
1501
|
+
padding-right: 0.75rem;
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1307
1504
|
.px-4 {
|
|
1308
1505
|
padding-left: 1rem;
|
|
1309
1506
|
padding-right: 1rem;
|
|
1310
1507
|
}
|
|
1311
1508
|
|
|
1312
|
-
.px-5 {
|
|
1313
|
-
padding-left: 1.25rem;
|
|
1314
|
-
padding-right: 1.25rem;
|
|
1315
|
-
}
|
|
1316
|
-
|
|
1317
1509
|
.px-8 {
|
|
1318
1510
|
padding-left: 2rem;
|
|
1319
1511
|
padding-right: 2rem;
|
|
@@ -1364,6 +1556,31 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1364
1556
|
padding-bottom: 5.6px;
|
|
1365
1557
|
}
|
|
1366
1558
|
|
|
1559
|
+
.px-9 {
|
|
1560
|
+
padding-left: 2.25rem;
|
|
1561
|
+
padding-right: 2.25rem;
|
|
1562
|
+
}
|
|
1563
|
+
|
|
1564
|
+
.px-6 {
|
|
1565
|
+
padding-left: 1.5rem;
|
|
1566
|
+
padding-right: 1.5rem;
|
|
1567
|
+
}
|
|
1568
|
+
|
|
1569
|
+
.py-6 {
|
|
1570
|
+
padding-top: 1.5rem;
|
|
1571
|
+
padding-bottom: 1.5rem;
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
.py-12 {
|
|
1575
|
+
padding-top: 3rem;
|
|
1576
|
+
padding-bottom: 3rem;
|
|
1577
|
+
}
|
|
1578
|
+
|
|
1579
|
+
.px-0 {
|
|
1580
|
+
padding-left: 0px;
|
|
1581
|
+
padding-right: 0px;
|
|
1582
|
+
}
|
|
1583
|
+
|
|
1367
1584
|
.pb-1 {
|
|
1368
1585
|
padding-bottom: 0.25rem;
|
|
1369
1586
|
}
|
|
@@ -1372,6 +1589,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1372
1589
|
padding-bottom: 0.5rem;
|
|
1373
1590
|
}
|
|
1374
1591
|
|
|
1592
|
+
.pb-20 {
|
|
1593
|
+
padding-bottom: 5rem;
|
|
1594
|
+
}
|
|
1595
|
+
|
|
1375
1596
|
.pb-3 {
|
|
1376
1597
|
padding-bottom: 0.75rem;
|
|
1377
1598
|
}
|
|
@@ -1396,6 +1617,14 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1396
1617
|
padding-bottom: 2rem;
|
|
1397
1618
|
}
|
|
1398
1619
|
|
|
1620
|
+
.pl-0 {
|
|
1621
|
+
padding-left: 0px;
|
|
1622
|
+
}
|
|
1623
|
+
|
|
1624
|
+
.pl-0\\.5 {
|
|
1625
|
+
padding-left: 0.125rem;
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1399
1628
|
.pl-1 {
|
|
1400
1629
|
padding-left: 0.25rem;
|
|
1401
1630
|
}
|
|
@@ -1408,6 +1637,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1408
1637
|
padding-left: 1rem;
|
|
1409
1638
|
}
|
|
1410
1639
|
|
|
1640
|
+
.pl-px {
|
|
1641
|
+
padding-left: 1px;
|
|
1642
|
+
}
|
|
1643
|
+
|
|
1411
1644
|
.pr-14 {
|
|
1412
1645
|
padding-right: 3.5rem;
|
|
1413
1646
|
}
|
|
@@ -1416,6 +1649,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1416
1649
|
padding-right: 0.5rem;
|
|
1417
1650
|
}
|
|
1418
1651
|
|
|
1652
|
+
.pr-3 {
|
|
1653
|
+
padding-right: 0.75rem;
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1419
1656
|
.pt-0 {
|
|
1420
1657
|
padding-top: 0px;
|
|
1421
1658
|
}
|
|
@@ -1452,10 +1689,19 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1452
1689
|
text-align: start;
|
|
1453
1690
|
}
|
|
1454
1691
|
|
|
1692
|
+
.text-end {
|
|
1693
|
+
text-align: end;
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1455
1696
|
.font-serif {
|
|
1456
1697
|
font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
|
|
1457
1698
|
}
|
|
1458
1699
|
|
|
1700
|
+
.text-2xl {
|
|
1701
|
+
font-size: 1.5rem;
|
|
1702
|
+
line-height: 2rem;
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1459
1705
|
.text-\\[11px\\] {
|
|
1460
1706
|
font-size: 11px;
|
|
1461
1707
|
}
|
|
@@ -1480,6 +1726,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1480
1726
|
line-height: 1rem;
|
|
1481
1727
|
}
|
|
1482
1728
|
|
|
1729
|
+
.text-xxs {
|
|
1730
|
+
font-size: 0.625rem;
|
|
1731
|
+
}
|
|
1732
|
+
|
|
1483
1733
|
.font-bold {
|
|
1484
1734
|
font-weight: 700;
|
|
1485
1735
|
}
|
|
@@ -1492,6 +1742,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1492
1742
|
font-weight: 400;
|
|
1493
1743
|
}
|
|
1494
1744
|
|
|
1745
|
+
.capitalize {
|
|
1746
|
+
text-transform: capitalize;
|
|
1747
|
+
}
|
|
1748
|
+
|
|
1495
1749
|
.leading-4 {
|
|
1496
1750
|
line-height: 1rem;
|
|
1497
1751
|
}
|
|
@@ -1614,10 +1868,24 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1614
1868
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
1615
1869
|
}
|
|
1616
1870
|
|
|
1871
|
+
.text-grey-400 {
|
|
1872
|
+
--tw-text-opacity: 1;
|
|
1873
|
+
color: rgb(153 153 153 / var(--tw-text-opacity));
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1617
1876
|
.underline {
|
|
1618
1877
|
text-decoration-line: underline;
|
|
1619
1878
|
}
|
|
1620
1879
|
|
|
1880
|
+
.shadow-lg {
|
|
1881
|
+
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
|
|
1882
|
+
0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
1883
|
+
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),
|
|
1884
|
+
0 4px 6px -4px var(--tw-shadow-color);
|
|
1885
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
|
|
1886
|
+
var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1887
|
+
}
|
|
1888
|
+
|
|
1621
1889
|
.shadow-sm {
|
|
1622
1890
|
--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
1623
1891
|
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
|
@@ -1625,7 +1893,42 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1625
1893
|
var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1626
1894
|
}
|
|
1627
1895
|
|
|
1896
|
+
.transition {
|
|
1897
|
+
transition-property: color, background-color, border-color,
|
|
1898
|
+
text-decoration-color, fill, stroke, opacity, box-shadow, transform,
|
|
1899
|
+
filter, -webkit-backdrop-filter;
|
|
1900
|
+
transition-property: color, background-color, border-color,
|
|
1901
|
+
text-decoration-color, fill, stroke, opacity, box-shadow, transform,
|
|
1902
|
+
filter, backdrop-filter;
|
|
1903
|
+
transition-property: color, background-color, border-color,
|
|
1904
|
+
text-decoration-color, fill, stroke, opacity, box-shadow, transform,
|
|
1905
|
+
filter, backdrop-filter, -webkit-backdrop-filter;
|
|
1906
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1907
|
+
transition-duration: 150ms;
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
|
+
.hover\\:underline:hover {
|
|
1911
|
+
text-decoration-line: underline;
|
|
1912
|
+
}
|
|
1913
|
+
|
|
1914
|
+
.focus\\:outline-none:focus {
|
|
1915
|
+
outline: 2px solid transparent;
|
|
1916
|
+
outline-offset: 2px;
|
|
1917
|
+
}
|
|
1918
|
+
|
|
1628
1919
|
@media (min-width: 640px) {
|
|
1920
|
+
.sm\\:w-1\\/2 {
|
|
1921
|
+
width: 50%;
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
.sm\\:w-3\\/4 {
|
|
1925
|
+
width: 75%;
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1928
|
+
.sm\\:w-1\\/4 {
|
|
1929
|
+
width: 25%;
|
|
1930
|
+
}
|
|
1931
|
+
|
|
1629
1932
|
.sm\\:max-w-lg {
|
|
1630
1933
|
max-width: 32rem;
|
|
1631
1934
|
}
|
|
@@ -1764,6 +2067,26 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1764
2067
|
width: 100%;
|
|
1765
2068
|
}
|
|
1766
2069
|
|
|
2070
|
+
.md\\:w-1\\/2 {
|
|
2071
|
+
width: 50%;
|
|
2072
|
+
}
|
|
2073
|
+
|
|
2074
|
+
.md\\:w-3\\/4 {
|
|
2075
|
+
width: 75%;
|
|
2076
|
+
}
|
|
2077
|
+
|
|
2078
|
+
.md\\:w-1\\/4 {
|
|
2079
|
+
width: 25%;
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
.md\\:w-1\\/3 {
|
|
2083
|
+
width: 33.333333%;
|
|
2084
|
+
}
|
|
2085
|
+
|
|
2086
|
+
.md\\:w-2\\/3 {
|
|
2087
|
+
width: 66.666667%;
|
|
2088
|
+
}
|
|
2089
|
+
|
|
1767
2090
|
.md\\:max-w-\\[137px\\] {
|
|
1768
2091
|
max-width: 137px;
|
|
1769
2092
|
}
|
|
@@ -1907,6 +2230,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1907
2230
|
padding-bottom: 1.5rem;
|
|
1908
2231
|
}
|
|
1909
2232
|
|
|
2233
|
+
.md\\:px-8 {
|
|
2234
|
+
padding-left: 2rem;
|
|
2235
|
+
padding-right: 2rem;
|
|
2236
|
+
}
|
|
2237
|
+
|
|
1910
2238
|
.md\\:pb-4 {
|
|
1911
2239
|
padding-bottom: 1rem;
|
|
1912
2240
|
}
|
|
@@ -2004,6 +2332,14 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2004
2332
|
display: block;
|
|
2005
2333
|
}
|
|
2006
2334
|
|
|
2335
|
+
.lg\\:flex {
|
|
2336
|
+
display: flex;
|
|
2337
|
+
}
|
|
2338
|
+
|
|
2339
|
+
.lg\\:hidden {
|
|
2340
|
+
display: none;
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2007
2343
|
.lg\\:min-h-\\[220px\\] {
|
|
2008
2344
|
min-height: 220px;
|
|
2009
2345
|
}
|
|
@@ -2012,6 +2348,26 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2012
2348
|
width: 410px;
|
|
2013
2349
|
}
|
|
2014
2350
|
|
|
2351
|
+
.lg\\:w-1\\/2 {
|
|
2352
|
+
width: 50%;
|
|
2353
|
+
}
|
|
2354
|
+
|
|
2355
|
+
.lg\\:w-1\\/3 {
|
|
2356
|
+
width: 33.333333%;
|
|
2357
|
+
}
|
|
2358
|
+
|
|
2359
|
+
.lg\\:w-3\\/4 {
|
|
2360
|
+
width: 75%;
|
|
2361
|
+
}
|
|
2362
|
+
|
|
2363
|
+
.lg\\:w-2 {
|
|
2364
|
+
width: 0.5rem;
|
|
2365
|
+
}
|
|
2366
|
+
|
|
2367
|
+
.lg\\:w-2\\/3 {
|
|
2368
|
+
width: 66.666667%;
|
|
2369
|
+
}
|
|
2370
|
+
|
|
2015
2371
|
.lg\\:max-w-7xl {
|
|
2016
2372
|
max-width: 80rem;
|
|
2017
2373
|
}
|
|
@@ -2082,9 +2438,39 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2082
2438
|
}
|
|
2083
2439
|
|
|
2084
2440
|
@media (min-width: 1280px) {
|
|
2441
|
+
.xl\\:block {
|
|
2442
|
+
display: block;
|
|
2443
|
+
}
|
|
2444
|
+
|
|
2445
|
+
.xl\\:flex {
|
|
2446
|
+
display: flex;
|
|
2447
|
+
}
|
|
2448
|
+
|
|
2449
|
+
.xl\\:hidden {
|
|
2450
|
+
display: none;
|
|
2451
|
+
}
|
|
2452
|
+
|
|
2453
|
+
.xl\\:w-1\\/3 {
|
|
2454
|
+
width: 33.333333%;
|
|
2455
|
+
}
|
|
2456
|
+
|
|
2457
|
+
.xl\\:w-1\\/2 {
|
|
2458
|
+
width: 50%;
|
|
2459
|
+
}
|
|
2460
|
+
|
|
2461
|
+
.xl\\:w-1\\/4 {
|
|
2462
|
+
width: 25%;
|
|
2463
|
+
}
|
|
2464
|
+
|
|
2085
2465
|
.xl\\:px-0 {
|
|
2086
2466
|
padding-left: 0px;
|
|
2087
2467
|
padding-right: 0px;
|
|
2088
2468
|
}
|
|
2089
2469
|
}
|
|
2470
|
+
|
|
2471
|
+
@media (min-width: 1536px) {
|
|
2472
|
+
.\\32xl\\:w-1\\/4 {
|
|
2473
|
+
width: 25%;
|
|
2474
|
+
}
|
|
2475
|
+
}
|
|
2090
2476
|
`
|