@kompasid/lit-web-components 0.4.5 → 0.5.1
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/font-awesome.ts +7 -4
- package/demo/index.html +147 -118
- package/dist/assets/font-awesome.d.ts +1 -1
- package/dist/assets/font-awesome.js +7 -4
- package/dist/assets/font-awesome.js.map +1 -1
- package/dist/src/components/kompasid-freewall/KompasFreewall.d.ts +91 -0
- package/dist/src/components/kompasid-freewall/KompasFreewall.js +261 -0
- package/dist/src/components/kompasid-freewall/KompasFreewall.js.map +1 -0
- package/dist/src/components/kompasid-freewall/types.d.ts +10 -0
- package/dist/src/components/kompasid-freewall/types.js +2 -0
- package/dist/src/components/kompasid-freewall/types.js.map +1 -0
- package/dist/src/components/kompasid-freewall-body/KompasFreewallBody.d.ts +33 -0
- package/dist/src/components/kompasid-freewall-body/KompasFreewallBody.js +225 -0
- package/dist/src/components/kompasid-freewall-body/KompasFreewallBody.js.map +1 -0
- package/dist/src/components/kompasid-freewall-head/KompasFreewallHead.d.ts +37 -0
- package/dist/src/components/kompasid-freewall-head/KompasFreewallHead.js +127 -0
- package/dist/src/components/kompasid-freewall-head/KompasFreewallHead.js.map +1 -0
- package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.d.ts +0 -1
- package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js +2 -7
- package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js.map +1 -1
- package/dist/src/components/kompasid-paywall-video/KompasPaywallVideo.d.ts +12 -13
- package/dist/src/components/kompasid-paywall-video/KompasPaywallVideo.js +30 -49
- package/dist/src/components/kompasid-paywall-video/KompasPaywallVideo.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/cta.d.ts +6 -0
- package/dist/src/utils/cta.js +18 -0
- package/dist/src/utils/cta.js.map +1 -0
- package/dist/src/utils/generateCopyDuration.d.ts +1 -0
- package/dist/src/utils/generateCopyDuration.js +15 -0
- package/dist/src/utils/generateCopyDuration.js.map +1 -0
- package/dist/src/utils/googleFont.js +1 -0
- package/dist/src/utils/googleFont.js.map +1 -1
- package/dist/tailwind/tailwind.js +223 -0
- package/dist/tailwind/tailwind.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -1
- package/src/components/kompasid-freewall/KompasFreewall.ts +211 -0
- package/src/components/kompasid-freewall/readme.md +63 -0
- package/src/components/kompasid-freewall/types.ts +10 -0
- package/src/components/kompasid-freewall-body/KompasFreewallBody.ts +221 -0
- package/src/components/kompasid-freewall-body/readme.md +13 -0
- package/src/components/kompasid-freewall-head/KompasFreewallHead.ts +107 -0
- package/src/components/kompasid-freewall-head/readme.md +17 -0
- package/src/components/kompasid-paywall-body/KompasPaywallBody.ts +2 -8
- package/src/components/kompasid-paywall-video/KompasPaywallVideo.ts +36 -51
- package/src/index.ts +1 -0
- package/src/utils/cta.ts +25 -0
- package/src/utils/generateCopyDuration.ts +14 -0
- package/src/utils/googleFont.ts +2 -0
- package/tailwind/tailwind.css +223 -0
- package/tailwind/tailwind.ts +223 -0
package/tailwind/tailwind.css
CHANGED
|
@@ -534,6 +534,10 @@ video {
|
|
|
534
534
|
--tw-backdrop-sepia: ;
|
|
535
535
|
}
|
|
536
536
|
|
|
537
|
+
.collapse {
|
|
538
|
+
visibility: collapse;
|
|
539
|
+
}
|
|
540
|
+
|
|
537
541
|
.static {
|
|
538
542
|
position: static;
|
|
539
543
|
}
|
|
@@ -582,6 +586,10 @@ video {
|
|
|
582
586
|
z-index: 0;
|
|
583
587
|
}
|
|
584
588
|
|
|
589
|
+
.z-10 {
|
|
590
|
+
z-index: 10;
|
|
591
|
+
}
|
|
592
|
+
|
|
585
593
|
.z-20 {
|
|
586
594
|
z-index: 20;
|
|
587
595
|
}
|
|
@@ -624,6 +632,10 @@ video {
|
|
|
624
632
|
margin-bottom: 1.5rem;
|
|
625
633
|
}
|
|
626
634
|
|
|
635
|
+
.-ml-2 {
|
|
636
|
+
margin-left: -0.5rem;
|
|
637
|
+
}
|
|
638
|
+
|
|
627
639
|
.-mt-24 {
|
|
628
640
|
margin-top: -6rem;
|
|
629
641
|
}
|
|
@@ -644,6 +656,10 @@ video {
|
|
|
644
656
|
margin-bottom: 0.5rem;
|
|
645
657
|
}
|
|
646
658
|
|
|
659
|
+
.mb-4 {
|
|
660
|
+
margin-bottom: 1rem;
|
|
661
|
+
}
|
|
662
|
+
|
|
647
663
|
.ml-0 {
|
|
648
664
|
margin-left: 0px;
|
|
649
665
|
}
|
|
@@ -652,6 +668,10 @@ video {
|
|
|
652
668
|
margin-left: 0.125rem;
|
|
653
669
|
}
|
|
654
670
|
|
|
671
|
+
.ml-1 {
|
|
672
|
+
margin-left: 0.25rem;
|
|
673
|
+
}
|
|
674
|
+
|
|
655
675
|
.ml-8 {
|
|
656
676
|
margin-left: 2rem;
|
|
657
677
|
}
|
|
@@ -700,6 +720,10 @@ video {
|
|
|
700
720
|
margin-top: 2rem;
|
|
701
721
|
}
|
|
702
722
|
|
|
723
|
+
.block {
|
|
724
|
+
display: block;
|
|
725
|
+
}
|
|
726
|
+
|
|
703
727
|
.flex {
|
|
704
728
|
display: flex;
|
|
705
729
|
}
|
|
@@ -736,6 +760,10 @@ video {
|
|
|
736
760
|
height: 2rem;
|
|
737
761
|
}
|
|
738
762
|
|
|
763
|
+
.h-9 {
|
|
764
|
+
height: 2.25rem;
|
|
765
|
+
}
|
|
766
|
+
|
|
739
767
|
.h-auto {
|
|
740
768
|
height: auto;
|
|
741
769
|
}
|
|
@@ -776,10 +804,18 @@ video {
|
|
|
776
804
|
width: 1.25rem;
|
|
777
805
|
}
|
|
778
806
|
|
|
807
|
+
.w-60 {
|
|
808
|
+
width: 15rem;
|
|
809
|
+
}
|
|
810
|
+
|
|
779
811
|
.w-8 {
|
|
780
812
|
width: 2rem;
|
|
781
813
|
}
|
|
782
814
|
|
|
815
|
+
.w-9 {
|
|
816
|
+
width: 2.25rem;
|
|
817
|
+
}
|
|
818
|
+
|
|
783
819
|
.w-\[120px\] {
|
|
784
820
|
width: 120px;
|
|
785
821
|
}
|
|
@@ -792,6 +828,10 @@ video {
|
|
|
792
828
|
width: 296px;
|
|
793
829
|
}
|
|
794
830
|
|
|
831
|
+
.w-\[328px\] {
|
|
832
|
+
width: 328px;
|
|
833
|
+
}
|
|
834
|
+
|
|
795
835
|
.w-auto {
|
|
796
836
|
width: auto;
|
|
797
837
|
}
|
|
@@ -804,6 +844,10 @@ video {
|
|
|
804
844
|
max-width: 80rem;
|
|
805
845
|
}
|
|
806
846
|
|
|
847
|
+
.max-w-\[280px\] {
|
|
848
|
+
max-width: 280px;
|
|
849
|
+
}
|
|
850
|
+
|
|
807
851
|
.max-w-screen-md {
|
|
808
852
|
max-width: 768px;
|
|
809
853
|
}
|
|
@@ -885,6 +929,10 @@ video {
|
|
|
885
929
|
place-items: center;
|
|
886
930
|
}
|
|
887
931
|
|
|
932
|
+
.items-start {
|
|
933
|
+
align-items: flex-start;
|
|
934
|
+
}
|
|
935
|
+
|
|
888
936
|
.items-center {
|
|
889
937
|
align-items: center;
|
|
890
938
|
}
|
|
@@ -921,26 +969,52 @@ video {
|
|
|
921
969
|
row-gap: 1rem;
|
|
922
970
|
}
|
|
923
971
|
|
|
972
|
+
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
|
|
973
|
+
--tw-space-x-reverse: 0;
|
|
974
|
+
margin-right: calc(0.75rem * var(--tw-space-x-reverse));
|
|
975
|
+
margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
|
|
976
|
+
}
|
|
977
|
+
|
|
924
978
|
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
|
|
925
979
|
--tw-space-x-reverse: 0;
|
|
926
980
|
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
|
927
981
|
margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
|
|
928
982
|
}
|
|
929
983
|
|
|
984
|
+
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
|
|
985
|
+
--tw-space-y-reverse: 0;
|
|
986
|
+
margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
|
|
987
|
+
margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
|
|
988
|
+
}
|
|
989
|
+
|
|
930
990
|
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
|
|
931
991
|
--tw-space-y-reverse: 0;
|
|
932
992
|
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
933
993
|
margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
|
|
934
994
|
}
|
|
935
995
|
|
|
996
|
+
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
|
|
997
|
+
--tw-space-y-reverse: 0;
|
|
998
|
+
margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
|
|
999
|
+
margin-bottom: calc(1rem * var(--tw-space-y-reverse));
|
|
1000
|
+
}
|
|
1001
|
+
|
|
936
1002
|
.self-center {
|
|
937
1003
|
align-self: center;
|
|
938
1004
|
}
|
|
939
1005
|
|
|
1006
|
+
.whitespace-nowrap {
|
|
1007
|
+
white-space: nowrap;
|
|
1008
|
+
}
|
|
1009
|
+
|
|
940
1010
|
.rounded {
|
|
941
1011
|
border-radius: 0.25rem;
|
|
942
1012
|
}
|
|
943
1013
|
|
|
1014
|
+
.rounded-\[10px\] {
|
|
1015
|
+
border-radius: 10px;
|
|
1016
|
+
}
|
|
1017
|
+
|
|
944
1018
|
.rounded-lg {
|
|
945
1019
|
border-radius: 0.5rem;
|
|
946
1020
|
}
|
|
@@ -983,6 +1057,11 @@ video {
|
|
|
983
1057
|
border-color: rgb(147 200 253 / var(--tw-border-opacity));
|
|
984
1058
|
}
|
|
985
1059
|
|
|
1060
|
+
.border-brand-1 {
|
|
1061
|
+
--tw-border-opacity: 1;
|
|
1062
|
+
border-color: rgb(0 85 154 / var(--tw-border-opacity));
|
|
1063
|
+
}
|
|
1064
|
+
|
|
986
1065
|
.border-dark-6 {
|
|
987
1066
|
--tw-border-opacity: 1;
|
|
988
1067
|
border-color: rgb(46 46 46 / var(--tw-border-opacity));
|
|
@@ -1038,6 +1117,11 @@ video {
|
|
|
1038
1117
|
background-color: rgb(225 240 255 / var(--tw-bg-opacity));
|
|
1039
1118
|
}
|
|
1040
1119
|
|
|
1120
|
+
.bg-blue-200 {
|
|
1121
|
+
--tw-bg-opacity: 1;
|
|
1122
|
+
background-color: rgb(147 200 253 / var(--tw-bg-opacity));
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1041
1125
|
.bg-blue-600 {
|
|
1042
1126
|
--tw-bg-opacity: 1;
|
|
1043
1127
|
background-color: rgb(3 86 168 / var(--tw-bg-opacity));
|
|
@@ -1149,6 +1233,11 @@ video {
|
|
|
1149
1233
|
padding-right: 2rem;
|
|
1150
1234
|
}
|
|
1151
1235
|
|
|
1236
|
+
.px-\[10px\] {
|
|
1237
|
+
padding-left: 10px;
|
|
1238
|
+
padding-right: 10px;
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1152
1241
|
.py-0 {
|
|
1153
1242
|
padding-top: 0px;
|
|
1154
1243
|
padding-bottom: 0px;
|
|
@@ -1199,6 +1288,10 @@ video {
|
|
|
1199
1288
|
padding-bottom: 1rem;
|
|
1200
1289
|
}
|
|
1201
1290
|
|
|
1291
|
+
.pb-5 {
|
|
1292
|
+
padding-bottom: 1.25rem;
|
|
1293
|
+
}
|
|
1294
|
+
|
|
1202
1295
|
.pb-6 {
|
|
1203
1296
|
padding-bottom: 1.5rem;
|
|
1204
1297
|
}
|
|
@@ -1239,10 +1332,18 @@ video {
|
|
|
1239
1332
|
padding-top: 2.5rem;
|
|
1240
1333
|
}
|
|
1241
1334
|
|
|
1335
|
+
.pt-4 {
|
|
1336
|
+
padding-top: 1rem;
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1242
1339
|
.pt-6 {
|
|
1243
1340
|
padding-top: 1.5rem;
|
|
1244
1341
|
}
|
|
1245
1342
|
|
|
1343
|
+
.pt-\[5px\] {
|
|
1344
|
+
padding-top: 5px;
|
|
1345
|
+
}
|
|
1346
|
+
|
|
1246
1347
|
.text-left {
|
|
1247
1348
|
text-align: left;
|
|
1248
1349
|
}
|
|
@@ -1251,15 +1352,28 @@ video {
|
|
|
1251
1352
|
text-align: center;
|
|
1252
1353
|
}
|
|
1253
1354
|
|
|
1355
|
+
.text-start {
|
|
1356
|
+
text-align: start;
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1254
1359
|
.font-serif {
|
|
1255
1360
|
font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
|
|
1256
1361
|
}
|
|
1257
1362
|
|
|
1363
|
+
.text-\[11px\] {
|
|
1364
|
+
font-size: 11px;
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1258
1367
|
.text-base {
|
|
1259
1368
|
font-size: 1rem;
|
|
1260
1369
|
line-height: 1.5rem;
|
|
1261
1370
|
}
|
|
1262
1371
|
|
|
1372
|
+
.text-lg {
|
|
1373
|
+
font-size: 1.125rem;
|
|
1374
|
+
line-height: 1.75rem;
|
|
1375
|
+
}
|
|
1376
|
+
|
|
1263
1377
|
.text-sm {
|
|
1264
1378
|
font-size: 0.875rem;
|
|
1265
1379
|
line-height: 1.25rem;
|
|
@@ -1274,6 +1388,10 @@ video {
|
|
|
1274
1388
|
font-weight: 700;
|
|
1275
1389
|
}
|
|
1276
1390
|
|
|
1391
|
+
.font-medium {
|
|
1392
|
+
font-weight: 500;
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1277
1395
|
.font-normal {
|
|
1278
1396
|
font-weight: 400;
|
|
1279
1397
|
}
|
|
@@ -1290,6 +1408,10 @@ video {
|
|
|
1290
1408
|
line-height: 22px;
|
|
1291
1409
|
}
|
|
1292
1410
|
|
|
1411
|
+
.leading-\[30px\] {
|
|
1412
|
+
line-height: 30px;
|
|
1413
|
+
}
|
|
1414
|
+
|
|
1293
1415
|
.leading-none {
|
|
1294
1416
|
line-height: 1;
|
|
1295
1417
|
}
|
|
@@ -1322,6 +1444,11 @@ video {
|
|
|
1322
1444
|
color: rgb(90 171 252 / var(--tw-text-opacity));
|
|
1323
1445
|
}
|
|
1324
1446
|
|
|
1447
|
+
.text-blue-500 {
|
|
1448
|
+
--tw-text-opacity: 1;
|
|
1449
|
+
color: rgb(4 104 203 / var(--tw-text-opacity));
|
|
1450
|
+
}
|
|
1451
|
+
|
|
1325
1452
|
.text-blue-600 {
|
|
1326
1453
|
--tw-text-opacity: 1;
|
|
1327
1454
|
color: rgb(3 86 168 / var(--tw-text-opacity));
|
|
@@ -1423,6 +1550,10 @@ video {
|
|
|
1423
1550
|
margin-bottom: 0px;
|
|
1424
1551
|
}
|
|
1425
1552
|
|
|
1553
|
+
.md\:mb-5 {
|
|
1554
|
+
margin-bottom: 1.25rem;
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1426
1557
|
.md\:ml-1 {
|
|
1427
1558
|
margin-left: 0.25rem;
|
|
1428
1559
|
}
|
|
@@ -1459,6 +1590,10 @@ video {
|
|
|
1459
1590
|
height: 3rem;
|
|
1460
1591
|
}
|
|
1461
1592
|
|
|
1593
|
+
.md\:min-h-\[244px\] {
|
|
1594
|
+
min-height: 244px;
|
|
1595
|
+
}
|
|
1596
|
+
|
|
1462
1597
|
.md\:w-3\/5 {
|
|
1463
1598
|
width: 60%;
|
|
1464
1599
|
}
|
|
@@ -1471,14 +1606,34 @@ video {
|
|
|
1471
1606
|
width: 13rem;
|
|
1472
1607
|
}
|
|
1473
1608
|
|
|
1609
|
+
.md\:w-\[350px\] {
|
|
1610
|
+
width: 350px;
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
.md\:w-\[370px\] {
|
|
1614
|
+
width: 370px;
|
|
1615
|
+
}
|
|
1616
|
+
|
|
1617
|
+
.md\:w-\[374px\] {
|
|
1618
|
+
width: 374px;
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1474
1621
|
.md\:w-\[400px\] {
|
|
1475
1622
|
width: 400px;
|
|
1476
1623
|
}
|
|
1477
1624
|
|
|
1625
|
+
.md\:w-\[580px\] {
|
|
1626
|
+
width: 580px;
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1478
1629
|
.md\:w-full {
|
|
1479
1630
|
width: 100%;
|
|
1480
1631
|
}
|
|
1481
1632
|
|
|
1633
|
+
.md\:max-w-full {
|
|
1634
|
+
max-width: 100%;
|
|
1635
|
+
}
|
|
1636
|
+
|
|
1482
1637
|
.md\:max-w-sm {
|
|
1483
1638
|
max-width: 24rem;
|
|
1484
1639
|
}
|
|
@@ -1491,6 +1646,22 @@ video {
|
|
|
1491
1646
|
flex-direction: row;
|
|
1492
1647
|
}
|
|
1493
1648
|
|
|
1649
|
+
.md\:justify-start {
|
|
1650
|
+
justify-content: flex-start;
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
.md\:space-x-5 > :not([hidden]) ~ :not([hidden]) {
|
|
1654
|
+
--tw-space-x-reverse: 0;
|
|
1655
|
+
margin-right: calc(1.25rem * var(--tw-space-x-reverse));
|
|
1656
|
+
margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
.md\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
|
|
1660
|
+
--tw-space-y-reverse: 0;
|
|
1661
|
+
margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
|
|
1662
|
+
margin-bottom: calc(0px * var(--tw-space-y-reverse));
|
|
1663
|
+
}
|
|
1664
|
+
|
|
1494
1665
|
.md\:space-y-4 > :not([hidden]) ~ :not([hidden]) {
|
|
1495
1666
|
--tw-space-y-reverse: 0;
|
|
1496
1667
|
margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -1501,10 +1672,18 @@ video {
|
|
|
1501
1672
|
align-self: flex-end;
|
|
1502
1673
|
}
|
|
1503
1674
|
|
|
1675
|
+
.md\:rounded {
|
|
1676
|
+
border-radius: 0.25rem;
|
|
1677
|
+
}
|
|
1678
|
+
|
|
1504
1679
|
.md\:rounded-lg {
|
|
1505
1680
|
border-radius: 0.5rem;
|
|
1506
1681
|
}
|
|
1507
1682
|
|
|
1683
|
+
.md\:p-5 {
|
|
1684
|
+
padding: 1.25rem;
|
|
1685
|
+
}
|
|
1686
|
+
|
|
1508
1687
|
.md\:px-0 {
|
|
1509
1688
|
padding-left: 0px;
|
|
1510
1689
|
padding-right: 0px;
|
|
@@ -1515,11 +1694,26 @@ video {
|
|
|
1515
1694
|
padding-right: 5rem;
|
|
1516
1695
|
}
|
|
1517
1696
|
|
|
1697
|
+
.md\:px-4 {
|
|
1698
|
+
padding-left: 1rem;
|
|
1699
|
+
padding-right: 1rem;
|
|
1700
|
+
}
|
|
1701
|
+
|
|
1702
|
+
.md\:px-5 {
|
|
1703
|
+
padding-left: 1.25rem;
|
|
1704
|
+
padding-right: 1.25rem;
|
|
1705
|
+
}
|
|
1706
|
+
|
|
1518
1707
|
.md\:px-6 {
|
|
1519
1708
|
padding-left: 1.5rem;
|
|
1520
1709
|
padding-right: 1.5rem;
|
|
1521
1710
|
}
|
|
1522
1711
|
|
|
1712
|
+
.md\:py-2 {
|
|
1713
|
+
padding-top: 0.5rem;
|
|
1714
|
+
padding-bottom: 0.5rem;
|
|
1715
|
+
}
|
|
1716
|
+
|
|
1523
1717
|
.md\:py-6 {
|
|
1524
1718
|
padding-top: 1.5rem;
|
|
1525
1719
|
padding-bottom: 1.5rem;
|
|
@@ -1529,6 +1723,14 @@ video {
|
|
|
1529
1723
|
padding-bottom: 1rem;
|
|
1530
1724
|
}
|
|
1531
1725
|
|
|
1726
|
+
.md\:pb-7 {
|
|
1727
|
+
padding-bottom: 1.75rem;
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
.md\:pt-3 {
|
|
1731
|
+
padding-top: 0.75rem;
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1532
1734
|
.md\:pt-8 {
|
|
1533
1735
|
padding-top: 2rem;
|
|
1534
1736
|
}
|
|
@@ -1592,6 +1794,10 @@ video {
|
|
|
1592
1794
|
margin-bottom: 0px;
|
|
1593
1795
|
}
|
|
1594
1796
|
|
|
1797
|
+
.lg\:mt-0 {
|
|
1798
|
+
margin-top: 0px;
|
|
1799
|
+
}
|
|
1800
|
+
|
|
1595
1801
|
.lg\:mt-2 {
|
|
1596
1802
|
margin-top: 0.5rem;
|
|
1597
1803
|
}
|
|
@@ -1608,6 +1814,14 @@ video {
|
|
|
1608
1814
|
display: none;
|
|
1609
1815
|
}
|
|
1610
1816
|
|
|
1817
|
+
.lg\:min-h-\[220px\] {
|
|
1818
|
+
min-height: 220px;
|
|
1819
|
+
}
|
|
1820
|
+
|
|
1821
|
+
.lg\:w-\[410px\] {
|
|
1822
|
+
width: 410px;
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1611
1825
|
.lg\:grid-cols-12 {
|
|
1612
1826
|
grid-template-columns: repeat(12, minmax(0, 1fr));
|
|
1613
1827
|
}
|
|
@@ -1624,6 +1838,10 @@ video {
|
|
|
1624
1838
|
flex-direction: column;
|
|
1625
1839
|
}
|
|
1626
1840
|
|
|
1841
|
+
.lg\:items-center {
|
|
1842
|
+
align-items: center;
|
|
1843
|
+
}
|
|
1844
|
+
|
|
1627
1845
|
.lg\:justify-end {
|
|
1628
1846
|
justify-content: flex-end;
|
|
1629
1847
|
}
|
|
@@ -1650,6 +1868,11 @@ video {
|
|
|
1650
1868
|
padding-right: 0px;
|
|
1651
1869
|
}
|
|
1652
1870
|
|
|
1871
|
+
.lg\:px-24 {
|
|
1872
|
+
padding-left: 6rem;
|
|
1873
|
+
padding-right: 6rem;
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1653
1876
|
.lg\:py-10 {
|
|
1654
1877
|
padding-top: 2.5rem;
|
|
1655
1878
|
padding-bottom: 2.5rem;
|