@kompasid/lit-web-components 0.9.26 → 0.9.28
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/src/components/kompasid-menu-side-bar/KompasMenuSideBar.d.ts +1 -1
- package/dist/src/components/kompasid-menu-side-bar/KompasMenuSideBar.js +36 -24
- package/dist/src/components/kompasid-menu-side-bar/KompasMenuSideBar.js.map +1 -1
- package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js +24 -15
- package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js.map +1 -1
- package/dist/tailwind/tailwind.js +44 -0
- package/dist/tailwind/tailwind.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/kompasid-menu-side-bar/KompasMenuSideBar.ts +37 -26
- package/src/components/kompasid-menu-side-bar/readme.md +1 -1
- package/src/components/kompasid-paywall/readme.md +155 -48
- package/src/components/kompasid-paywall-body/KompasPaywallBody.ts +25 -15
- package/tailwind/tailwind.css +25 -0
- package/tailwind/tailwind.ts +44 -0
package/tailwind/tailwind.ts
CHANGED
|
@@ -673,11 +673,21 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
673
673
|
margin-right: 1.5rem;
|
|
674
674
|
}
|
|
675
675
|
|
|
676
|
+
.mx-8 {
|
|
677
|
+
margin-left: 1.75rem;
|
|
678
|
+
margin-right: 1.75rem;
|
|
679
|
+
}
|
|
680
|
+
|
|
676
681
|
.mx-auto {
|
|
677
682
|
margin-left: auto;
|
|
678
683
|
margin-right: auto;
|
|
679
684
|
}
|
|
680
685
|
|
|
686
|
+
.my-1 {
|
|
687
|
+
margin-top: 0.25rem;
|
|
688
|
+
margin-bottom: 0.25rem;
|
|
689
|
+
}
|
|
690
|
+
|
|
681
691
|
.my-4 {
|
|
682
692
|
margin-top: 1rem;
|
|
683
693
|
margin-bottom: 1rem;
|
|
@@ -857,6 +867,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
857
867
|
height: 4rem;
|
|
858
868
|
}
|
|
859
869
|
|
|
870
|
+
.h-2 {
|
|
871
|
+
height: 0.5rem;
|
|
872
|
+
}
|
|
873
|
+
|
|
860
874
|
.h-20 {
|
|
861
875
|
height: 5rem;
|
|
862
876
|
}
|
|
@@ -950,6 +964,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
950
964
|
width: 4rem;
|
|
951
965
|
}
|
|
952
966
|
|
|
967
|
+
.w-2 {
|
|
968
|
+
width: 0.5rem;
|
|
969
|
+
}
|
|
970
|
+
|
|
953
971
|
.w-2\\/3 {
|
|
954
972
|
width: 66.666667%;
|
|
955
973
|
}
|
|
@@ -1209,6 +1227,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1209
1227
|
gap: 0.25rem;
|
|
1210
1228
|
}
|
|
1211
1229
|
|
|
1230
|
+
.gap-2 {
|
|
1231
|
+
gap: 0.5rem;
|
|
1232
|
+
}
|
|
1233
|
+
|
|
1212
1234
|
.gap-4 {
|
|
1213
1235
|
gap: 1rem;
|
|
1214
1236
|
}
|
|
@@ -1428,6 +1450,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1428
1450
|
border-color: rgb(255 204 0 / var(--tw-border-opacity, 1));
|
|
1429
1451
|
}
|
|
1430
1452
|
|
|
1453
|
+
.bg-\\[\\#00000066\\] {
|
|
1454
|
+
background-color: #00000066;
|
|
1455
|
+
}
|
|
1456
|
+
|
|
1431
1457
|
.bg-\\[\\#2C2C2C\\] {
|
|
1432
1458
|
--tw-bg-opacity: 1;
|
|
1433
1459
|
background-color: rgb(44 44 44 / var(--tw-bg-opacity, 1));
|
|
@@ -1719,6 +1745,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1719
1745
|
padding-left: 0.25rem;
|
|
1720
1746
|
}
|
|
1721
1747
|
|
|
1748
|
+
.pl-14 {
|
|
1749
|
+
padding-left: 3.5rem;
|
|
1750
|
+
}
|
|
1751
|
+
|
|
1722
1752
|
.pl-2 {
|
|
1723
1753
|
padding-left: 0.5rem;
|
|
1724
1754
|
}
|
|
@@ -1755,6 +1785,10 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
1755
1785
|
padding-top: 0.125rem;
|
|
1756
1786
|
}
|
|
1757
1787
|
|
|
1788
|
+
.pt-1 {
|
|
1789
|
+
padding-top: 0.25rem;
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1758
1792
|
.pt-10 {
|
|
1759
1793
|
padding-top: 2.5rem;
|
|
1760
1794
|
}
|
|
@@ -2069,6 +2103,16 @@ Constrain images and videos to the parent width and preserve their intrinsic asp
|
|
|
2069
2103
|
background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
|
|
2070
2104
|
}
|
|
2071
2105
|
|
|
2106
|
+
.hover\\:bg-\\[\\#f4f4f4\\]:hover {
|
|
2107
|
+
--tw-bg-opacity: 1;
|
|
2108
|
+
background-color: rgb(244 244 244 / var(--tw-bg-opacity, 1));
|
|
2109
|
+
}
|
|
2110
|
+
|
|
2111
|
+
.hover\\:text-\\[\\#222222\\]:hover {
|
|
2112
|
+
--tw-bg-opacity: 1;
|
|
2113
|
+
color: rgb(34 34 34 / var(--tw-bg-opacity, 1));
|
|
2114
|
+
}
|
|
2115
|
+
|
|
2072
2116
|
.hover\\:underline:hover {
|
|
2073
2117
|
text-decoration-line: underline;
|
|
2074
2118
|
}
|