@kompasid/lit-web-components 0.9.48 → 0.9.49

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.
Files changed (35) hide show
  1. package/demo/header.html +18 -2
  2. package/demo/paywall.html +3 -2
  3. package/dist/src/components/kompasid-header-account/KompasHeaderAccount.d.ts +1 -0
  4. package/dist/src/components/kompasid-header-account/KompasHeaderAccount.js +8 -0
  5. package/dist/src/components/kompasid-header-account/KompasHeaderAccount.js.map +1 -1
  6. package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.d.ts +3 -0
  7. package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.js +83 -6
  8. package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.js.map +1 -1
  9. package/dist/src/components/kompasid-paywall/types.d.ts +1 -0
  10. package/dist/src/components/kompasid-paywall/types.js.map +1 -1
  11. package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.d.ts +1 -0
  12. package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js +22 -1
  13. package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js.map +1 -1
  14. package/dist/src/components/kompasid-paywall-modal-register/KompasPaywallModalRegister.d.ts +36 -0
  15. package/dist/src/components/kompasid-paywall-modal-register/KompasPaywallModalRegister.js +589 -0
  16. package/dist/src/components/kompasid-paywall-modal-register/KompasPaywallModalRegister.js.map +1 -0
  17. package/dist/src/components/kompasid-paywall-modal-register/types.d.ts +33 -0
  18. package/dist/src/components/kompasid-paywall-modal-register/types.js +2 -0
  19. package/dist/src/components/kompasid-paywall-modal-register/types.js.map +1 -0
  20. package/dist/src/index.d.ts +1 -0
  21. package/dist/src/index.js +1 -0
  22. package/dist/src/index.js.map +1 -1
  23. package/dist/tailwind/tailwind.js +160 -0
  24. package/dist/tailwind/tailwind.js.map +1 -1
  25. package/dist/tsconfig.tsbuildinfo +1 -1
  26. package/package.json +1 -1
  27. package/src/components/kompasid-header-account/KompasHeaderAccount.ts +5 -0
  28. package/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.ts +78 -6
  29. package/src/components/kompasid-paywall/types.ts +1 -0
  30. package/src/components/kompasid-paywall-body/KompasPaywallBody.ts +22 -1
  31. package/src/components/kompasid-paywall-modal-register/KompasPaywallModalRegister.ts +613 -0
  32. package/src/components/kompasid-paywall-modal-register/types.ts +39 -0
  33. package/src/index.ts +1 -0
  34. package/tailwind/tailwind.css +160 -0
  35. package/tailwind/tailwind.ts +160 -0
@@ -586,6 +586,10 @@ video {
586
586
  bottom: -1.5rem;
587
587
  }
588
588
 
589
+ .-right-\[5\%\] {
590
+ right: -5%;
591
+ }
592
+
589
593
  .-top-1\.5 {
590
594
  top: -0.375rem;
591
595
  }
@@ -594,6 +598,10 @@ video {
594
598
  top: -0.5rem;
595
599
  }
596
600
 
601
+ .-top-\[11px\] {
602
+ top: -11px;
603
+ }
604
+
597
605
  .-top-\[12px\] {
598
606
  top: -12px;
599
607
  }
@@ -614,6 +622,10 @@ video {
614
622
  left: 1rem;
615
623
  }
616
624
 
625
+ .left-\[80\%\] {
626
+ left: 80%;
627
+ }
628
+
617
629
  .right-0 {
618
630
  right: 0px;
619
631
  }
@@ -630,6 +642,10 @@ video {
630
642
  top: 1rem;
631
643
  }
632
644
 
645
+ .top-full {
646
+ top: 100%;
647
+ }
648
+
633
649
  .z-0 {
634
650
  z-index: 0;
635
651
  }
@@ -731,6 +747,10 @@ video {
731
747
  margin-top: -1.75rem;
732
748
  }
733
749
 
750
+ .-mt-\[72px\] {
751
+ margin-top: -72px;
752
+ }
753
+
734
754
  .mb-0 {
735
755
  margin-bottom: 0px;
736
756
  }
@@ -843,6 +863,10 @@ video {
843
863
  margin-top: 1.25rem;
844
864
  }
845
865
 
866
+ .mt-6 {
867
+ margin-top: 1.5rem;
868
+ }
869
+
846
870
  .mt-8 {
847
871
  margin-top: 2rem;
848
872
  }
@@ -956,6 +980,23 @@ video {
956
980
  max-height: 116px;
957
981
  }
958
982
 
983
+ .max-h-\[150px\] {
984
+ max-height: 150px;
985
+ }
986
+
987
+ .max-h-\[577px\] {
988
+ max-height: 577px;
989
+ }
990
+
991
+ .max-h-fit {
992
+ max-height: -moz-fit-content;
993
+ max-height: fit-content;
994
+ }
995
+
996
+ .max-h-full {
997
+ max-height: 100%;
998
+ }
999
+
959
1000
  .min-h-\[68px\] {
960
1001
  min-height: 68px;
961
1002
  }
@@ -1089,6 +1130,11 @@ video {
1089
1130
  width: 100%;
1090
1131
  }
1091
1132
 
1133
+ .w-max {
1134
+ width: -moz-max-content;
1135
+ width: max-content;
1136
+ }
1137
+
1092
1138
  .w-screen {
1093
1139
  width: 100vw;
1094
1140
  }
@@ -1109,6 +1155,22 @@ video {
1109
1155
  max-width: 1200px;
1110
1156
  }
1111
1157
 
1158
+ .max-w-\[190px\] {
1159
+ max-width: 190px;
1160
+ }
1161
+
1162
+ .max-w-\[214px\] {
1163
+ max-width: 214px;
1164
+ }
1165
+
1166
+ .max-w-\[242px\] {
1167
+ max-width: 242px;
1168
+ }
1169
+
1170
+ .max-w-\[300px\] {
1171
+ max-width: 300px;
1172
+ }
1173
+
1112
1174
  .max-w-\[460px\] {
1113
1175
  max-width: 460px;
1114
1176
  }
@@ -1117,6 +1179,10 @@ video {
1117
1179
  max-width: 492px;
1118
1180
  }
1119
1181
 
1182
+ .max-w-\[624px\] {
1183
+ max-width: 624px;
1184
+ }
1185
+
1120
1186
  .max-w-screen-md {
1121
1187
  max-width: 768px;
1122
1188
  }
@@ -1178,6 +1244,12 @@ video {
1178
1244
  cursor: pointer;
1179
1245
  }
1180
1246
 
1247
+ .select-none {
1248
+ -webkit-user-select: none;
1249
+ -moz-user-select: none;
1250
+ user-select: none;
1251
+ }
1252
+
1181
1253
  .snap-x {
1182
1254
  scroll-snap-type: x var(--tw-scroll-snap-strictness);
1183
1255
  }
@@ -1243,6 +1315,10 @@ video {
1243
1315
  align-items: flex-start;
1244
1316
  }
1245
1317
 
1318
+ .items-end {
1319
+ align-items: flex-end;
1320
+ }
1321
+
1246
1322
  .items-center {
1247
1323
  align-items: center;
1248
1324
  }
@@ -1343,6 +1419,14 @@ video {
1343
1419
  align-self: center;
1344
1420
  }
1345
1421
 
1422
+ .overflow-auto {
1423
+ overflow: auto;
1424
+ }
1425
+
1426
+ .overflow-hidden {
1427
+ overflow: hidden;
1428
+ }
1429
+
1346
1430
  .overflow-y-auto {
1347
1431
  overflow-y: auto;
1348
1432
  }
@@ -1486,6 +1570,11 @@ video {
1486
1570
  border-color: rgb(153 153 153 / var(--tw-border-opacity, 1));
1487
1571
  }
1488
1572
 
1573
+ .border-grey-500 {
1574
+ --tw-border-opacity: 1;
1575
+ border-color: rgb(102 102 102 / var(--tw-border-opacity, 1));
1576
+ }
1577
+
1489
1578
  .border-white {
1490
1579
  --tw-border-opacity: 1;
1491
1580
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
@@ -1510,6 +1599,11 @@ video {
1510
1599
  background-color: rgb(215 25 32 / var(--tw-bg-opacity, 1));
1511
1600
  }
1512
1601
 
1602
+ .bg-\[\#FFF8D6\] {
1603
+ --tw-bg-opacity: 1;
1604
+ background-color: rgb(255 248 214 / var(--tw-bg-opacity, 1));
1605
+ }
1606
+
1513
1607
  .bg-\[\#FFFFFF\] {
1514
1608
  --tw-bg-opacity: 1;
1515
1609
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
@@ -1625,6 +1719,11 @@ video {
1625
1719
  background-color: rgb(255 220 63 / var(--tw-bg-opacity, 1));
1626
1720
  }
1627
1721
 
1722
+ .bg-yellow-500 {
1723
+ --tw-bg-opacity: 1;
1724
+ background-color: rgb(219 170 0 / var(--tw-bg-opacity, 1));
1725
+ }
1726
+
1628
1727
  .bg-opacity-75 {
1629
1728
  --tw-bg-opacity: 0.75;
1630
1729
  }
@@ -1951,6 +2050,10 @@ video {
1951
2050
  line-height: 1.25rem;
1952
2051
  }
1953
2052
 
2053
+ .leading-6 {
2054
+ line-height: 1.5rem;
2055
+ }
2056
+
1954
2057
  .leading-\[150\%\] {
1955
2058
  line-height: 150%;
1956
2059
  }
@@ -1997,6 +2100,11 @@ video {
1997
2100
  color: rgb(102 102 102 / var(--tw-text-opacity, 1));
1998
2101
  }
1999
2102
 
2103
+ .text-\[\#F57A7A\] {
2104
+ --tw-text-opacity: 1;
2105
+ color: rgb(245 122 122 / var(--tw-text-opacity, 1));
2106
+ }
2107
+
2000
2108
  .text-\[\#FFFFFF\] {
2001
2109
  --tw-text-opacity: 1;
2002
2110
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
@@ -2067,6 +2175,11 @@ video {
2067
2175
  color: rgb(244 244 244 / var(--tw-text-opacity, 1));
2068
2176
  }
2069
2177
 
2178
+ .text-grey-200 {
2179
+ --tw-text-opacity: 1;
2180
+ color: rgb(238 238 238 / var(--tw-text-opacity, 1));
2181
+ }
2182
+
2070
2183
  .text-grey-300 {
2071
2184
  --tw-text-opacity: 1;
2072
2185
  color: rgb(221 221 221 / var(--tw-text-opacity, 1));
@@ -2117,6 +2230,11 @@ video {
2117
2230
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
2118
2231
  }
2119
2232
 
2233
+ .text-yellow-700 {
2234
+ --tw-text-opacity: 1;
2235
+ color: rgb(122 87 0 / var(--tw-text-opacity, 1));
2236
+ }
2237
+
2120
2238
  .underline {
2121
2239
  text-decoration-line: underline;
2122
2240
  }
@@ -2190,6 +2308,10 @@ video {
2190
2308
  outline-offset: 2px;
2191
2309
  }
2192
2310
 
2311
+ .group:hover .group-hover\:block {
2312
+ display: block;
2313
+ }
2314
+
2193
2315
  @media (min-width: 640px) {
2194
2316
  .sm\:block {
2195
2317
  display: block;
@@ -2261,6 +2383,10 @@ video {
2261
2383
  margin-right: 1.5rem;
2262
2384
  }
2263
2385
 
2386
+ .md\:mt-10 {
2387
+ margin-top: 2.5rem;
2388
+ }
2389
+
2264
2390
  .md\:mt-2 {
2265
2391
  margin-top: 0.5rem;
2266
2392
  }
@@ -2301,10 +2427,19 @@ video {
2301
2427
  height: 1.25rem;
2302
2428
  }
2303
2429
 
2430
+ .md\:h-6 {
2431
+ height: 1.5rem;
2432
+ }
2433
+
2304
2434
  .md\:max-h-\[220px\] {
2305
2435
  max-height: 220px;
2306
2436
  }
2307
2437
 
2438
+ .md\:max-h-fit {
2439
+ max-height: -moz-fit-content;
2440
+ max-height: fit-content;
2441
+ }
2442
+
2308
2443
  .md\:min-h-\[244px\] {
2309
2444
  min-height: 244px;
2310
2445
  }
@@ -2337,6 +2472,10 @@ video {
2337
2472
  width: 13rem;
2338
2473
  }
2339
2474
 
2475
+ .md\:w-6 {
2476
+ width: 1.5rem;
2477
+ }
2478
+
2340
2479
  .md\:w-\[350px\] {
2341
2480
  width: 350px;
2342
2481
  }
@@ -2373,6 +2512,10 @@ video {
2373
2512
  max-width: 200px;
2374
2513
  }
2375
2514
 
2515
+ .md\:max-w-\[321px\] {
2516
+ max-width: 321px;
2517
+ }
2518
+
2376
2519
  .md\:max-w-\[492px\] {
2377
2520
  max-width: 492px;
2378
2521
  }
@@ -2469,6 +2612,14 @@ video {
2469
2612
  border-radius: 0.5rem;
2470
2613
  }
2471
2614
 
2615
+ .md\:p-10 {
2616
+ padding: 2.5rem;
2617
+ }
2618
+
2619
+ .md\:p-16 {
2620
+ padding: 4rem;
2621
+ }
2622
+
2472
2623
  .md\:p-5 {
2473
2624
  padding: 1.25rem;
2474
2625
  }
@@ -2513,6 +2664,11 @@ video {
2513
2664
  padding-bottom: 0.375rem;
2514
2665
  }
2515
2666
 
2667
+ .md\:py-16 {
2668
+ padding-top: 4rem;
2669
+ padding-bottom: 4rem;
2670
+ }
2671
+
2516
2672
  .md\:py-2 {
2517
2673
  padding-top: 0.5rem;
2518
2674
  padding-bottom: 0.5rem;
@@ -2701,6 +2857,10 @@ video {
2701
2857
  max-width: 80rem;
2702
2858
  }
2703
2859
 
2860
+ .lg\:max-w-\[515px\] {
2861
+ max-width: 515px;
2862
+ }
2863
+
2704
2864
  .lg\:grid-cols-12 {
2705
2865
  grid-template-columns: repeat(12, minmax(0, 1fr));
2706
2866
  }
@@ -593,6 +593,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
593
593
  bottom: -1.5rem;
594
594
  }
595
595
 
596
+ .-right-\\[5\\%\\] {
597
+ right: -5%;
598
+ }
599
+
596
600
  .-top-1\\.5 {
597
601
  top: -0.375rem;
598
602
  }
@@ -601,6 +605,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
601
605
  top: -0.5rem;
602
606
  }
603
607
 
608
+ .-top-\\[11px\\] {
609
+ top: -11px;
610
+ }
611
+
604
612
  .-top-\\[12px\\] {
605
613
  top: -12px;
606
614
  }
@@ -621,6 +629,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
621
629
  left: 1rem;
622
630
  }
623
631
 
632
+ .left-\\[80\\%\\] {
633
+ left: 80%;
634
+ }
635
+
624
636
  .right-0 {
625
637
  right: 0px;
626
638
  }
@@ -637,6 +649,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
637
649
  top: 1rem;
638
650
  }
639
651
 
652
+ .top-full {
653
+ top: 100%;
654
+ }
655
+
640
656
  .z-0 {
641
657
  z-index: 0;
642
658
  }
@@ -738,6 +754,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
738
754
  margin-top: -1.75rem;
739
755
  }
740
756
 
757
+ .-mt-\\[72px\\] {
758
+ margin-top: -72px;
759
+ }
760
+
741
761
  .mb-0 {
742
762
  margin-bottom: 0px;
743
763
  }
@@ -850,6 +870,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
850
870
  margin-top: 1.25rem;
851
871
  }
852
872
 
873
+ .mt-6 {
874
+ margin-top: 1.5rem;
875
+ }
876
+
853
877
  .mt-8 {
854
878
  margin-top: 2rem;
855
879
  }
@@ -963,6 +987,23 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
963
987
  max-height: 116px;
964
988
  }
965
989
 
990
+ .max-h-\\[150px\\] {
991
+ max-height: 150px;
992
+ }
993
+
994
+ .max-h-\\[577px\\] {
995
+ max-height: 577px;
996
+ }
997
+
998
+ .max-h-fit {
999
+ max-height: -moz-fit-content;
1000
+ max-height: fit-content;
1001
+ }
1002
+
1003
+ .max-h-full {
1004
+ max-height: 100%;
1005
+ }
1006
+
966
1007
  .min-h-\\[68px\\] {
967
1008
  min-height: 68px;
968
1009
  }
@@ -1096,6 +1137,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1096
1137
  width: 100%;
1097
1138
  }
1098
1139
 
1140
+ .w-max {
1141
+ width: -moz-max-content;
1142
+ width: max-content;
1143
+ }
1144
+
1099
1145
  .w-screen {
1100
1146
  width: 100vw;
1101
1147
  }
@@ -1116,6 +1162,22 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1116
1162
  max-width: 1200px;
1117
1163
  }
1118
1164
 
1165
+ .max-w-\\[190px\\] {
1166
+ max-width: 190px;
1167
+ }
1168
+
1169
+ .max-w-\\[214px\\] {
1170
+ max-width: 214px;
1171
+ }
1172
+
1173
+ .max-w-\\[242px\\] {
1174
+ max-width: 242px;
1175
+ }
1176
+
1177
+ .max-w-\\[300px\\] {
1178
+ max-width: 300px;
1179
+ }
1180
+
1119
1181
  .max-w-\\[460px\\] {
1120
1182
  max-width: 460px;
1121
1183
  }
@@ -1124,6 +1186,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1124
1186
  max-width: 492px;
1125
1187
  }
1126
1188
 
1189
+ .max-w-\\[624px\\] {
1190
+ max-width: 624px;
1191
+ }
1192
+
1127
1193
  .max-w-screen-md {
1128
1194
  max-width: 768px;
1129
1195
  }
@@ -1189,6 +1255,12 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1189
1255
  cursor: pointer;
1190
1256
  }
1191
1257
 
1258
+ .select-none {
1259
+ -webkit-user-select: none;
1260
+ -moz-user-select: none;
1261
+ user-select: none;
1262
+ }
1263
+
1192
1264
  .snap-x {
1193
1265
  scroll-snap-type: x var(--tw-scroll-snap-strictness);
1194
1266
  }
@@ -1254,6 +1326,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1254
1326
  align-items: flex-start;
1255
1327
  }
1256
1328
 
1329
+ .items-end {
1330
+ align-items: flex-end;
1331
+ }
1332
+
1257
1333
  .items-center {
1258
1334
  align-items: center;
1259
1335
  }
@@ -1354,6 +1430,14 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1354
1430
  align-self: center;
1355
1431
  }
1356
1432
 
1433
+ .overflow-auto {
1434
+ overflow: auto;
1435
+ }
1436
+
1437
+ .overflow-hidden {
1438
+ overflow: hidden;
1439
+ }
1440
+
1357
1441
  .overflow-y-auto {
1358
1442
  overflow-y: auto;
1359
1443
  }
@@ -1497,6 +1581,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1497
1581
  border-color: rgb(153 153 153 / var(--tw-border-opacity, 1));
1498
1582
  }
1499
1583
 
1584
+ .border-grey-500 {
1585
+ --tw-border-opacity: 1;
1586
+ border-color: rgb(102 102 102 / var(--tw-border-opacity, 1));
1587
+ }
1588
+
1500
1589
  .border-white {
1501
1590
  --tw-border-opacity: 1;
1502
1591
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
@@ -1521,6 +1610,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1521
1610
  background-color: rgb(215 25 32 / var(--tw-bg-opacity, 1));
1522
1611
  }
1523
1612
 
1613
+ .bg-\\[\\#FFF8D6\\] {
1614
+ --tw-bg-opacity: 1;
1615
+ background-color: rgb(255 248 214 / var(--tw-bg-opacity, 1));
1616
+ }
1617
+
1524
1618
  .bg-\\[\\#FFFFFF\\] {
1525
1619
  --tw-bg-opacity: 1;
1526
1620
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
@@ -1636,6 +1730,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1636
1730
  background-color: rgb(255 220 63 / var(--tw-bg-opacity, 1));
1637
1731
  }
1638
1732
 
1733
+ .bg-yellow-500 {
1734
+ --tw-bg-opacity: 1;
1735
+ background-color: rgb(219 170 0 / var(--tw-bg-opacity, 1));
1736
+ }
1737
+
1639
1738
  .bg-opacity-75 {
1640
1739
  --tw-bg-opacity: 0.75;
1641
1740
  }
@@ -1962,6 +2061,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1962
2061
  line-height: 1.25rem;
1963
2062
  }
1964
2063
 
2064
+ .leading-6 {
2065
+ line-height: 1.5rem;
2066
+ }
2067
+
1965
2068
  .leading-\\[150\\%\\] {
1966
2069
  line-height: 150%;
1967
2070
  }
@@ -2008,6 +2111,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
2008
2111
  color: rgb(102 102 102 / var(--tw-text-opacity, 1));
2009
2112
  }
2010
2113
 
2114
+ .text-\\[\\#F57A7A\\] {
2115
+ --tw-text-opacity: 1;
2116
+ color: rgb(245 122 122 / var(--tw-text-opacity, 1));
2117
+ }
2118
+
2011
2119
  .text-\\[\\#FFFFFF\\] {
2012
2120
  --tw-text-opacity: 1;
2013
2121
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
@@ -2078,6 +2186,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
2078
2186
  color: rgb(244 244 244 / var(--tw-text-opacity, 1));
2079
2187
  }
2080
2188
 
2189
+ .text-grey-200 {
2190
+ --tw-text-opacity: 1;
2191
+ color: rgb(238 238 238 / var(--tw-text-opacity, 1));
2192
+ }
2193
+
2081
2194
  .text-grey-300 {
2082
2195
  --tw-text-opacity: 1;
2083
2196
  color: rgb(221 221 221 / var(--tw-text-opacity, 1));
@@ -2128,6 +2241,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
2128
2241
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
2129
2242
  }
2130
2243
 
2244
+ .text-yellow-700 {
2245
+ --tw-text-opacity: 1;
2246
+ color: rgb(122 87 0 / var(--tw-text-opacity, 1));
2247
+ }
2248
+
2131
2249
  .underline {
2132
2250
  text-decoration-line: underline;
2133
2251
  }
@@ -2213,6 +2331,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
2213
2331
  outline-offset: 2px;
2214
2332
  }
2215
2333
 
2334
+ .group:hover .group-hover\\:block {
2335
+ display: block;
2336
+ }
2337
+
2216
2338
  @media (min-width: 640px) {
2217
2339
  .sm\\:block {
2218
2340
  display: block;
@@ -2284,6 +2406,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
2284
2406
  margin-right: 1.5rem;
2285
2407
  }
2286
2408
 
2409
+ .md\\:mt-10 {
2410
+ margin-top: 2.5rem;
2411
+ }
2412
+
2287
2413
  .md\\:mt-2 {
2288
2414
  margin-top: 0.5rem;
2289
2415
  }
@@ -2324,10 +2450,19 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
2324
2450
  height: 1.25rem;
2325
2451
  }
2326
2452
 
2453
+ .md\\:h-6 {
2454
+ height: 1.5rem;
2455
+ }
2456
+
2327
2457
  .md\\:max-h-\\[220px\\] {
2328
2458
  max-height: 220px;
2329
2459
  }
2330
2460
 
2461
+ .md\\:max-h-fit {
2462
+ max-height: -moz-fit-content;
2463
+ max-height: fit-content;
2464
+ }
2465
+
2331
2466
  .md\\:min-h-\\[244px\\] {
2332
2467
  min-height: 244px;
2333
2468
  }
@@ -2360,6 +2495,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
2360
2495
  width: 13rem;
2361
2496
  }
2362
2497
 
2498
+ .md\\:w-6 {
2499
+ width: 1.5rem;
2500
+ }
2501
+
2363
2502
  .md\\:w-\\[350px\\] {
2364
2503
  width: 350px;
2365
2504
  }
@@ -2396,6 +2535,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
2396
2535
  max-width: 200px;
2397
2536
  }
2398
2537
 
2538
+ .md\\:max-w-\\[321px\\] {
2539
+ max-width: 321px;
2540
+ }
2541
+
2399
2542
  .md\\:max-w-\\[492px\\] {
2400
2543
  max-width: 492px;
2401
2544
  }
@@ -2492,6 +2635,14 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
2492
2635
  border-radius: 0.5rem;
2493
2636
  }
2494
2637
 
2638
+ .md\\:p-10 {
2639
+ padding: 2.5rem;
2640
+ }
2641
+
2642
+ .md\\:p-16 {
2643
+ padding: 4rem;
2644
+ }
2645
+
2495
2646
  .md\\:p-5 {
2496
2647
  padding: 1.25rem;
2497
2648
  }
@@ -2536,6 +2687,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
2536
2687
  padding-bottom: 0.375rem;
2537
2688
  }
2538
2689
 
2690
+ .md\\:py-16 {
2691
+ padding-top: 4rem;
2692
+ padding-bottom: 4rem;
2693
+ }
2694
+
2539
2695
  .md\\:py-2 {
2540
2696
  padding-top: 0.5rem;
2541
2697
  padding-bottom: 0.5rem;
@@ -2724,6 +2880,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
2724
2880
  max-width: 80rem;
2725
2881
  }
2726
2882
 
2883
+ .lg\\:max-w-\\[515px\\] {
2884
+ max-width: 515px;
2885
+ }
2886
+
2727
2887
  .lg\\:grid-cols-12 {
2728
2888
  grid-template-columns: repeat(12, minmax(0, 1fr));
2729
2889
  }