@kompasid/lit-web-components 0.5.3 → 0.5.4

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.
@@ -124,6 +124,10 @@ export class KompasIdPaywallBody extends LitElement {
124
124
  return this.theme === 'dark'
125
125
  }
126
126
 
127
+ get isEntitledForIntroductoryPrice(): boolean {
128
+ return !this.isLogin || this.tracker_subscription_status === 'IA'
129
+ }
130
+
127
131
  /**
128
132
  * Logic Function
129
133
  */
@@ -641,16 +645,6 @@ export class KompasIdPaywallBody extends LitElement {
641
645
  </div>`
642
646
  }
643
647
 
644
- private separatorLine() {
645
- return html`
646
- <div class="flex flex-row w-full justify-center">
647
- <p class="px-4 pt-1 ${this.isDark ? 'text-dark-1' : 'text-grey-500'}">
648
- atau
649
- </p>
650
- </div>
651
- `
652
- }
653
-
654
648
  private epaperRegistrationSection() {
655
649
  return html`
656
650
  <div>
@@ -753,7 +747,8 @@ export class KompasIdPaywallBody extends LitElement {
753
747
  private primaryPackages(product: Product) {
754
748
  return html`
755
749
  <div
756
- class="flex flex-wrap justify-between items-center ${this.isDark
750
+ class="flex flex-wrap justify-between h-[68px] items-center ${this
751
+ .isDark
757
752
  ? 'bg-grey-600'
758
753
  : 'bg-white'} rounded-lg md:mx-0 w-full max-w-xs md:max-w-sm md:w-3/5 mt-2.5 md:mt-4 border border-yellow-400 relative"
759
754
  >
@@ -777,9 +772,9 @@ export class KompasIdPaywallBody extends LitElement {
777
772
  </div>
778
773
  </div>
779
774
  <button
780
- class="h-auto ${this.isDark
775
+ class="h-8 ${this.isDark
781
776
  ? 'bg-green-300 border border-green-400'
782
- : 'bg-green-500'} rounded mr-4"
777
+ : 'bg-green-500'} rounded mr-4 flex items-center"
783
778
  @click=${() =>
784
779
  this.redirectToCheckout(
785
780
  product.url,
@@ -790,7 +785,7 @@ export class KompasIdPaywallBody extends LitElement {
790
785
  )}
791
786
  >
792
787
  <h6
793
- class="text-xs md:text-base ${this.isDark
788
+ class="text-xs md:text-sm ${this.isDark
794
789
  ? 'text-black'
795
790
  : 'text-white'} font-bold py-2 px-4"
796
791
  >
@@ -809,9 +804,9 @@ export class KompasIdPaywallBody extends LitElement {
809
804
  private secondaryPackages(product: Product) {
810
805
  return html`
811
806
  <div
812
- class="flex flex-wrap justify-between ${this.isDark
807
+ class="flex flex-wrap items-center justify-between ${this.isDark
813
808
  ? 'bg-grey-600'
814
- : 'bg-white'} py-3 px-4 rounded-lg md:mx-0 w-full max-w-xs md:max-w-sm md:w-3/5 mt-3 md:mt-4"
809
+ : 'bg-white'} py-3 px-4 rounded-lg md:mx-0 w-full h-[68px] max-w-xs md:max-w-sm md:w-3/5 mt-3 md:mt-4"
815
810
  >
816
811
  <div class="flex items-center">
817
812
  <h5 class="text-base md:text-lg font-bold text-orange-400">
@@ -834,13 +829,13 @@ export class KompasIdPaywallBody extends LitElement {
834
829
  50000,
835
830
  2
836
831
  )}
837
- class="h-auto ${!this.isDark &&
832
+ class="h-8 ${!this.isDark &&
838
833
  'bg-white'} border border-green-500 rounded"
839
834
  >
840
835
  <h6
841
- class="text-xs md:text-base ${this.isDark
836
+ class="text-xs md:text-sm ${this.isDark
842
837
  ? 'text-green-300'
843
- : 'text-green-500'} font-bold py-2 px-4"
838
+ : 'text-green-500'} font-bold px-4 "
844
839
  >
845
840
  Langganan
846
841
  </h6>
@@ -857,6 +852,7 @@ export class KompasIdPaywallBody extends LitElement {
857
852
  ? this.primaryPackages(item)
858
853
  : this.secondaryPackages(item)
859
854
  )}
855
+ ${this.swgEnable ? this.swgPackageSection() : nothing}
860
856
  </div>
861
857
  `
862
858
  }
@@ -907,6 +903,65 @@ export class KompasIdPaywallBody extends LitElement {
907
903
  `
908
904
  }
909
905
 
906
+ private introductoryPrice() {
907
+ return html` <div
908
+ class="flex space-x-1 h-5 md:h-max overflow-hidden md:flex-col md:space-x-0 items-center md:items-start md:justify-center"
909
+ >
910
+ <h5 class="text-base md:text-lg font-bold text-orange-400">Rp 10.000</h5>
911
+ <p class="text-xs ${this.isDark ? 'text-dark-7' : 'text-grey-600'}">
912
+ untuk 1 bulan pertama
913
+ </p>
914
+ </div>`
915
+ }
916
+
917
+ private swgRegonText() {
918
+ return html`<p
919
+ class="text-xs leading-4 md:max-w-[137px] ${this.isDark
920
+ ? 'text-dark-7'
921
+ : 'text-grey-600'}"
922
+ >
923
+ Berlangganan lebih mudah dengan Google
924
+ </p>`
925
+ }
926
+
927
+ private swgPackageSection() {
928
+ return html`
929
+ <div
930
+ class="flex flex-col space-y-2 md:space-x-2 md:space-y-0 md:flex-row justify-between items-center ${this
931
+ .isDark
932
+ ? 'bg-grey-600'
933
+ : 'bg-white'} py-3 px-4 rounded-lg md:mx-0 w-full h-[76px] md:h-[68px] max-w-xs md:max-w-sm md:w-3/5 mt-3 md:mt-4"
934
+ >
935
+ ${this.isEntitledForIntroductoryPrice
936
+ ? this.introductoryPrice()
937
+ : this.swgRegonText()}
938
+ <div>
939
+ <button
940
+ class="${this.isDark
941
+ ? 'bg-grey-600'
942
+ : 'bg-grey-100 border-grey-100'} border space-x-2 justify-center border-grey-400 rounded-md px-[22px] md:px-6 shadow-sm flex h-max flex-row flex-nowrap py-[5.6px] md:py-1.5 items-center"
943
+ id="subscribe-with-google"
944
+ >
945
+ <p
946
+ class="${this.isDark
947
+ ? 'text-dark-7'
948
+ : 'text-grey-500'} text-[11px] md:text-xs whitespace-nowrap w-full "
949
+ >
950
+ Subscribe with
951
+ </p>
952
+ <img
953
+ class="object-scale-down h-[17px] md:h-5"
954
+ src=${this.isDark
955
+ ? 'https://kompasid-production-www.s3.ap-southeast-1.amazonaws.com/paywall-asset/google-white.png'
956
+ : 'https://kompasid-production-www.s3.ap-southeast-1.amazonaws.com/paywall-asset/google.png'}
957
+ alt="subscribe with google"
958
+ />
959
+ </button>
960
+ </div>
961
+ </div>
962
+ `
963
+ }
964
+
910
965
  /**
911
966
  * Render Statement
912
967
  */
@@ -936,26 +991,6 @@ export class KompasIdPaywallBody extends LitElement {
936
991
  this.paywallData?.packages ?? ({} as Packages)
937
992
  )}
938
993
  ${this.informationPackages()}
939
- ${this.swgEnable ? this.separatorLine() : nothing}
940
- ${this.swgEnable
941
- ? html`<button
942
- class="${this.isDark
943
- ? 'bg-grey-600'
944
- : 'border-2 bg-grey-100 border-grey-100'} rounded-lg px-6 shadow-sm flex flex-row py-2 mt-1 items-center"
945
- id="subscribe-with-google"
946
- >
947
- <p class=${this.isDark ? 'text-dark-7' : 'text-grey-500'}>
948
- Subscribe with
949
- </p>
950
- <img
951
- class="pl-2 object-scale-down w-20 pt-0.5"
952
- src=${this.isDark
953
- ? 'https://kompasid-production-www.s3.ap-southeast-1.amazonaws.com/paywall-asset/google-white.png'
954
- : 'https://kompasid-production-www.s3.ap-southeast-1.amazonaws.com/paywall-asset/google.png'}
955
- alt="subscribe with google"
956
- />
957
- </button>`
958
- : nothing}
959
994
  ${!this.isLogin
960
995
  ? html`
961
996
  <div
@@ -772,6 +772,18 @@ video {
772
772
  height: 2.25rem;
773
773
  }
774
774
 
775
+ .h-\[17px\] {
776
+ height: 17px;
777
+ }
778
+
779
+ .h-\[68px\] {
780
+ height: 68px;
781
+ }
782
+
783
+ .h-\[76px\] {
784
+ height: 76px;
785
+ }
786
+
775
787
  .h-auto {
776
788
  height: auto;
777
789
  }
@@ -780,6 +792,11 @@ video {
780
792
  height: 100%;
781
793
  }
782
794
 
795
+ .h-max {
796
+ height: -moz-max-content;
797
+ height: max-content;
798
+ }
799
+
783
800
  .w-1\/5 {
784
801
  width: 20%;
785
802
  }
@@ -929,6 +946,10 @@ video {
929
946
  flex-wrap: wrap;
930
947
  }
931
948
 
949
+ .flex-nowrap {
950
+ flex-wrap: nowrap;
951
+ }
952
+
932
953
  .place-items-center {
933
954
  place-items: center;
934
955
  }
@@ -973,6 +994,18 @@ video {
973
994
  row-gap: 1rem;
974
995
  }
975
996
 
997
+ .space-x-1 > :not([hidden]) ~ :not([hidden]) {
998
+ --tw-space-x-reverse: 0;
999
+ margin-right: calc(0.25rem * var(--tw-space-x-reverse));
1000
+ margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
1001
+ }
1002
+
1003
+ .space-x-2 > :not([hidden]) ~ :not([hidden]) {
1004
+ --tw-space-x-reverse: 0;
1005
+ margin-right: calc(0.5rem * var(--tw-space-x-reverse));
1006
+ margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
1007
+ }
1008
+
976
1009
  .space-x-4 > :not([hidden]) ~ :not([hidden]) {
977
1010
  --tw-space-x-reverse: 0;
978
1011
  margin-right: calc(1rem * var(--tw-space-x-reverse));
@@ -1001,6 +1034,10 @@ video {
1001
1034
  align-self: center;
1002
1035
  }
1003
1036
 
1037
+ .overflow-hidden {
1038
+ overflow: hidden;
1039
+ }
1040
+
1004
1041
  .whitespace-nowrap {
1005
1042
  white-space: nowrap;
1006
1043
  }
@@ -1090,6 +1127,11 @@ video {
1090
1127
  border-color: rgb(238 238 238 / var(--tw-border-opacity));
1091
1128
  }
1092
1129
 
1130
+ .border-grey-400 {
1131
+ --tw-border-opacity: 1;
1132
+ border-color: rgb(153 153 153 / var(--tw-border-opacity));
1133
+ }
1134
+
1093
1135
  .border-white {
1094
1136
  --tw-border-opacity: 1;
1095
1137
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
@@ -1185,6 +1227,11 @@ video {
1185
1227
  background-color: rgb(255 220 63 / var(--tw-bg-opacity));
1186
1228
  }
1187
1229
 
1230
+ .bg-red-100 {
1231
+ --tw-bg-opacity: 1;
1232
+ background-color: rgb(254 225 207 / var(--tw-bg-opacity));
1233
+ }
1234
+
1188
1235
  .bg-opacity-75 {
1189
1236
  --tw-bg-opacity: 0.75;
1190
1237
  }
@@ -1221,11 +1268,6 @@ video {
1221
1268
  padding-right: 1rem;
1222
1269
  }
1223
1270
 
1224
- .px-6 {
1225
- padding-left: 1.5rem;
1226
- padding-right: 1.5rem;
1227
- }
1228
-
1229
1271
  .px-8 {
1230
1272
  padding-left: 2rem;
1231
1273
  padding-right: 2rem;
@@ -1236,6 +1278,11 @@ video {
1236
1278
  padding-right: 10px;
1237
1279
  }
1238
1280
 
1281
+ .px-\[22px\] {
1282
+ padding-left: 22px;
1283
+ padding-right: 22px;
1284
+ }
1285
+
1239
1286
  .py-0 {
1240
1287
  padding-top: 0px;
1241
1288
  padding-bottom: 0px;
@@ -1266,6 +1313,11 @@ video {
1266
1313
  padding-bottom: 1.25rem;
1267
1314
  }
1268
1315
 
1316
+ .py-\[5\.6px\] {
1317
+ padding-top: 5.6px;
1318
+ padding-bottom: 5.6px;
1319
+ }
1320
+
1269
1321
  .pb-1 {
1270
1322
  padding-bottom: 0.25rem;
1271
1323
  }
@@ -1322,10 +1374,6 @@ video {
1322
1374
  padding-top: 0.125rem;
1323
1375
  }
1324
1376
 
1325
- .pt-1 {
1326
- padding-top: 0.25rem;
1327
- }
1328
-
1329
1377
  .pt-10 {
1330
1378
  padding-top: 2.5rem;
1331
1379
  }
@@ -1394,6 +1442,10 @@ video {
1394
1442
  font-weight: 400;
1395
1443
  }
1396
1444
 
1445
+ .leading-4 {
1446
+ line-height: 1rem;
1447
+ }
1448
+
1397
1449
  .leading-5 {
1398
1450
  line-height: 1.25rem;
1399
1451
  }
@@ -1457,11 +1509,6 @@ video {
1457
1509
  color: rgb(0 85 154 / var(--tw-text-opacity));
1458
1510
  }
1459
1511
 
1460
- .text-dark-1 {
1461
- --tw-text-opacity: 1;
1462
- color: rgb(160 160 160 / var(--tw-text-opacity));
1463
- }
1464
-
1465
1512
  .text-dark-6 {
1466
1513
  --tw-text-opacity: 1;
1467
1514
  color: rgb(46 46 46 / var(--tw-text-opacity));
@@ -1588,6 +1635,19 @@ video {
1588
1635
  height: 3rem;
1589
1636
  }
1590
1637
 
1638
+ .md\:h-5 {
1639
+ height: 1.25rem;
1640
+ }
1641
+
1642
+ .md\:h-\[68px\] {
1643
+ height: 68px;
1644
+ }
1645
+
1646
+ .md\:h-max {
1647
+ height: -moz-max-content;
1648
+ height: max-content;
1649
+ }
1650
+
1591
1651
  .md\:min-h-\[244px\] {
1592
1652
  min-height: 244px;
1593
1653
  }
@@ -1628,6 +1688,10 @@ video {
1628
1688
  width: 100%;
1629
1689
  }
1630
1690
 
1691
+ .md\:max-w-\[137px\] {
1692
+ max-width: 137px;
1693
+ }
1694
+
1631
1695
  .md\:max-w-sm {
1632
1696
  max-width: 24rem;
1633
1697
  }
@@ -1640,10 +1704,34 @@ video {
1640
1704
  flex-direction: row;
1641
1705
  }
1642
1706
 
1707
+ .md\:flex-col {
1708
+ flex-direction: column;
1709
+ }
1710
+
1711
+ .md\:items-start {
1712
+ align-items: flex-start;
1713
+ }
1714
+
1643
1715
  .md\:justify-start {
1644
1716
  justify-content: flex-start;
1645
1717
  }
1646
1718
 
1719
+ .md\:justify-center {
1720
+ justify-content: center;
1721
+ }
1722
+
1723
+ .md\:space-x-0 > :not([hidden]) ~ :not([hidden]) {
1724
+ --tw-space-x-reverse: 0;
1725
+ margin-right: calc(0px * var(--tw-space-x-reverse));
1726
+ margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse)));
1727
+ }
1728
+
1729
+ .md\:space-x-2 > :not([hidden]) ~ :not([hidden]) {
1730
+ --tw-space-x-reverse: 0;
1731
+ margin-right: calc(0.5rem * var(--tw-space-x-reverse));
1732
+ margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
1733
+ }
1734
+
1647
1735
  .md\:space-x-5 > :not([hidden]) ~ :not([hidden]) {
1648
1736
  --tw-space-x-reverse: 0;
1649
1737
  margin-right: calc(1.25rem * var(--tw-space-x-reverse));
@@ -1703,6 +1791,16 @@ video {
1703
1791
  padding-right: 1.5rem;
1704
1792
  }
1705
1793
 
1794
+ .md\:py-1 {
1795
+ padding-top: 0.25rem;
1796
+ padding-bottom: 0.25rem;
1797
+ }
1798
+
1799
+ .md\:py-1\.5 {
1800
+ padding-top: 0.375rem;
1801
+ padding-bottom: 0.375rem;
1802
+ }
1803
+
1706
1804
  .md\:py-2 {
1707
1805
  padding-top: 0.5rem;
1708
1806
  padding-bottom: 0.5rem;
@@ -1753,6 +1851,11 @@ video {
1753
1851
  line-height: 1.75rem;
1754
1852
  }
1755
1853
 
1854
+ .md\:text-xs {
1855
+ font-size: 0.75rem;
1856
+ line-height: 1rem;
1857
+ }
1858
+
1756
1859
  .md\:leading-6 {
1757
1860
  line-height: 1.5rem;
1758
1861
  }
@@ -782,6 +782,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
782
782
  height: 2.25rem;
783
783
  }
784
784
 
785
+ .h-\\[17px\\] {
786
+ height: 17px;
787
+ }
788
+
789
+ .h-\\[68px\\] {
790
+ height: 68px;
791
+ }
792
+
793
+ .h-\\[76px\\] {
794
+ height: 76px;
795
+ }
796
+
785
797
  .h-auto {
786
798
  height: auto;
787
799
  }
@@ -790,6 +802,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
790
802
  height: 100%;
791
803
  }
792
804
 
805
+ .h-max {
806
+ height: -moz-max-content;
807
+ height: max-content;
808
+ }
809
+
793
810
  .w-1\\/5 {
794
811
  width: 20%;
795
812
  }
@@ -943,6 +960,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
943
960
  flex-wrap: wrap;
944
961
  }
945
962
 
963
+ .flex-nowrap {
964
+ flex-wrap: nowrap;
965
+ }
966
+
946
967
  .place-items-center {
947
968
  place-items: center;
948
969
  }
@@ -987,6 +1008,18 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
987
1008
  row-gap: 1rem;
988
1009
  }
989
1010
 
1011
+ .space-x-1 > :not([hidden]) ~ :not([hidden]) {
1012
+ --tw-space-x-reverse: 0;
1013
+ margin-right: calc(0.25rem * var(--tw-space-x-reverse));
1014
+ margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
1015
+ }
1016
+
1017
+ .space-x-2 > :not([hidden]) ~ :not([hidden]) {
1018
+ --tw-space-x-reverse: 0;
1019
+ margin-right: calc(0.5rem * var(--tw-space-x-reverse));
1020
+ margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
1021
+ }
1022
+
990
1023
  .space-x-4 > :not([hidden]) ~ :not([hidden]) {
991
1024
  --tw-space-x-reverse: 0;
992
1025
  margin-right: calc(1rem * var(--tw-space-x-reverse));
@@ -1015,6 +1048,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1015
1048
  align-self: center;
1016
1049
  }
1017
1050
 
1051
+ .overflow-hidden {
1052
+ overflow: hidden;
1053
+ }
1054
+
1018
1055
  .whitespace-nowrap {
1019
1056
  white-space: nowrap;
1020
1057
  }
@@ -1104,6 +1141,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1104
1141
  border-color: rgb(238 238 238 / var(--tw-border-opacity));
1105
1142
  }
1106
1143
 
1144
+ .border-grey-400 {
1145
+ --tw-border-opacity: 1;
1146
+ border-color: rgb(153 153 153 / var(--tw-border-opacity));
1147
+ }
1148
+
1107
1149
  .border-white {
1108
1150
  --tw-border-opacity: 1;
1109
1151
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
@@ -1199,6 +1241,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1199
1241
  background-color: rgb(255 220 63 / var(--tw-bg-opacity));
1200
1242
  }
1201
1243
 
1244
+ .bg-red-100 {
1245
+ --tw-bg-opacity: 1;
1246
+ background-color: rgb(254 225 207 / var(--tw-bg-opacity));
1247
+ }
1248
+
1202
1249
  .bg-opacity-75 {
1203
1250
  --tw-bg-opacity: 0.75;
1204
1251
  }
@@ -1235,11 +1282,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1235
1282
  padding-right: 1rem;
1236
1283
  }
1237
1284
 
1238
- .px-6 {
1239
- padding-left: 1.5rem;
1240
- padding-right: 1.5rem;
1241
- }
1242
-
1243
1285
  .px-8 {
1244
1286
  padding-left: 2rem;
1245
1287
  padding-right: 2rem;
@@ -1250,6 +1292,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1250
1292
  padding-right: 10px;
1251
1293
  }
1252
1294
 
1295
+ .px-\\[22px\\] {
1296
+ padding-left: 22px;
1297
+ padding-right: 22px;
1298
+ }
1299
+
1253
1300
  .py-0 {
1254
1301
  padding-top: 0px;
1255
1302
  padding-bottom: 0px;
@@ -1280,6 +1327,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1280
1327
  padding-bottom: 1.25rem;
1281
1328
  }
1282
1329
 
1330
+ .py-\\[5\\.6px\\] {
1331
+ padding-top: 5.6px;
1332
+ padding-bottom: 5.6px;
1333
+ }
1334
+
1283
1335
  .pb-1 {
1284
1336
  padding-bottom: 0.25rem;
1285
1337
  }
@@ -1336,10 +1388,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1336
1388
  padding-top: 0.125rem;
1337
1389
  }
1338
1390
 
1339
- .pt-1 {
1340
- padding-top: 0.25rem;
1341
- }
1342
-
1343
1391
  .pt-10 {
1344
1392
  padding-top: 2.5rem;
1345
1393
  }
@@ -1408,6 +1456,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1408
1456
  font-weight: 400;
1409
1457
  }
1410
1458
 
1459
+ .leading-4 {
1460
+ line-height: 1rem;
1461
+ }
1462
+
1411
1463
  .leading-5 {
1412
1464
  line-height: 1.25rem;
1413
1465
  }
@@ -1471,11 +1523,6 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1471
1523
  color: rgb(0 85 154 / var(--tw-text-opacity));
1472
1524
  }
1473
1525
 
1474
- .text-dark-1 {
1475
- --tw-text-opacity: 1;
1476
- color: rgb(160 160 160 / var(--tw-text-opacity));
1477
- }
1478
-
1479
1526
  .text-dark-6 {
1480
1527
  --tw-text-opacity: 1;
1481
1528
  color: rgb(46 46 46 / var(--tw-text-opacity));
@@ -1603,6 +1650,19 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1603
1650
  height: 3rem;
1604
1651
  }
1605
1652
 
1653
+ .md\\:h-5 {
1654
+ height: 1.25rem;
1655
+ }
1656
+
1657
+ .md\\:h-\\[68px\\] {
1658
+ height: 68px;
1659
+ }
1660
+
1661
+ .md\\:h-max {
1662
+ height: -moz-max-content;
1663
+ height: max-content;
1664
+ }
1665
+
1606
1666
  .md\\:min-h-\\[244px\\] {
1607
1667
  min-height: 244px;
1608
1668
  }
@@ -1643,6 +1703,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1643
1703
  width: 100%;
1644
1704
  }
1645
1705
 
1706
+ .md\\:max-w-\\[137px\\] {
1707
+ max-width: 137px;
1708
+ }
1709
+
1646
1710
  .md\\:max-w-sm {
1647
1711
  max-width: 24rem;
1648
1712
  }
@@ -1655,10 +1719,34 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1655
1719
  flex-direction: row;
1656
1720
  }
1657
1721
 
1722
+ .md\\:flex-col {
1723
+ flex-direction: column;
1724
+ }
1725
+
1726
+ .md\\:items-start {
1727
+ align-items: flex-start;
1728
+ }
1729
+
1658
1730
  .md\\:justify-start {
1659
1731
  justify-content: flex-start;
1660
1732
  }
1661
1733
 
1734
+ .md\\:justify-center {
1735
+ justify-content: center;
1736
+ }
1737
+
1738
+ .md\\:space-x-0 > :not([hidden]) ~ :not([hidden]) {
1739
+ --tw-space-x-reverse: 0;
1740
+ margin-right: calc(0px * var(--tw-space-x-reverse));
1741
+ margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse)));
1742
+ }
1743
+
1744
+ .md\\:space-x-2 > :not([hidden]) ~ :not([hidden]) {
1745
+ --tw-space-x-reverse: 0;
1746
+ margin-right: calc(0.5rem * var(--tw-space-x-reverse));
1747
+ margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
1748
+ }
1749
+
1662
1750
  .md\\:space-x-5 > :not([hidden]) ~ :not([hidden]) {
1663
1751
  --tw-space-x-reverse: 0;
1664
1752
  margin-right: calc(1.25rem * var(--tw-space-x-reverse));
@@ -1718,6 +1806,16 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1718
1806
  padding-right: 1.5rem;
1719
1807
  }
1720
1808
 
1809
+ .md\\:py-1 {
1810
+ padding-top: 0.25rem;
1811
+ padding-bottom: 0.25rem;
1812
+ }
1813
+
1814
+ .md\\:py-1\\.5 {
1815
+ padding-top: 0.375rem;
1816
+ padding-bottom: 0.375rem;
1817
+ }
1818
+
1721
1819
  .md\\:py-2 {
1722
1820
  padding-top: 0.5rem;
1723
1821
  padding-bottom: 0.5rem;
@@ -1768,6 +1866,11 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
1768
1866
  line-height: 1.75rem;
1769
1867
  }
1770
1868
 
1869
+ .md\\:text-xs {
1870
+ font-size: 0.75rem;
1871
+ line-height: 1rem;
1872
+ }
1873
+
1771
1874
  .md\\:leading-6 {
1772
1875
  line-height: 1.5rem;
1773
1876
  }