@pelcro/react-pelcro-js 3.31.0 → 3.33.0
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/index.cjs.js +1532 -564
- package/dist/index.esm.js +1523 -565
- package/dist/pelcro.css +39 -0
- package/package.json +1 -1
package/dist/pelcro.css
CHANGED
|
@@ -2053,6 +2053,10 @@ apple-pay-button {
|
|
|
2053
2053
|
display: none;
|
|
2054
2054
|
}
|
|
2055
2055
|
|
|
2056
|
+
.pelcro-root .plc-flex-row {
|
|
2057
|
+
flex-direction: row;
|
|
2058
|
+
}
|
|
2059
|
+
|
|
2056
2060
|
.pelcro-root .plc-flex-row-reverse {
|
|
2057
2061
|
flex-direction: row-reverse;
|
|
2058
2062
|
}
|
|
@@ -2185,6 +2189,10 @@ apple-pay-button {
|
|
|
2185
2189
|
height: 9rem;
|
|
2186
2190
|
}
|
|
2187
2191
|
|
|
2192
|
+
.pelcro-root .plc-h-40 {
|
|
2193
|
+
height: 10rem;
|
|
2194
|
+
}
|
|
2195
|
+
|
|
2188
2196
|
.pelcro-root .plc-h-52 {
|
|
2189
2197
|
height: 13rem;
|
|
2190
2198
|
}
|
|
@@ -2248,6 +2256,11 @@ apple-pay-button {
|
|
|
2248
2256
|
margin: 0.125rem;
|
|
2249
2257
|
}
|
|
2250
2258
|
|
|
2259
|
+
.pelcro-root .plc-my-1 {
|
|
2260
|
+
margin-top: 0.25rem;
|
|
2261
|
+
margin-bottom: 0.25rem;
|
|
2262
|
+
}
|
|
2263
|
+
|
|
2251
2264
|
.pelcro-root .plc-my-2 {
|
|
2252
2265
|
margin-top: 0.5rem;
|
|
2253
2266
|
margin-bottom: 0.5rem;
|
|
@@ -2263,6 +2276,11 @@ apple-pay-button {
|
|
|
2263
2276
|
margin-bottom: 1rem;
|
|
2264
2277
|
}
|
|
2265
2278
|
|
|
2279
|
+
.pelcro-root .plc-my-auto {
|
|
2280
|
+
margin-top: auto;
|
|
2281
|
+
margin-bottom: auto;
|
|
2282
|
+
}
|
|
2283
|
+
|
|
2266
2284
|
.pelcro-root .plc-mx-auto {
|
|
2267
2285
|
margin-left: auto;
|
|
2268
2286
|
margin-right: auto;
|
|
@@ -2368,6 +2386,10 @@ apple-pay-button {
|
|
|
2368
2386
|
max-height: 12rem;
|
|
2369
2387
|
}
|
|
2370
2388
|
|
|
2389
|
+
.pelcro-root .plc-max-h-52 {
|
|
2390
|
+
max-height: 13rem;
|
|
2391
|
+
}
|
|
2392
|
+
|
|
2371
2393
|
.pelcro-root .plc-max-h-72 {
|
|
2372
2394
|
max-height: 18rem;
|
|
2373
2395
|
}
|
|
@@ -2520,6 +2542,10 @@ apple-pay-button {
|
|
|
2520
2542
|
padding-left: 1rem;
|
|
2521
2543
|
}
|
|
2522
2544
|
|
|
2545
|
+
.pelcro-root .plc-pr-6 {
|
|
2546
|
+
padding-right: 1.5rem;
|
|
2547
|
+
}
|
|
2548
|
+
|
|
2523
2549
|
.pelcro-root .plc-pr-8 {
|
|
2524
2550
|
padding-right: 2rem;
|
|
2525
2551
|
}
|
|
@@ -3178,6 +3204,19 @@ apple-pay-button {
|
|
|
3178
3204
|
}
|
|
3179
3205
|
}
|
|
3180
3206
|
|
|
3207
|
+
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
3208
|
+
|
|
3209
|
+
.no-scrollbar::-webkit-scrollbar {
|
|
3210
|
+
display: none;
|
|
3211
|
+
}
|
|
3212
|
+
|
|
3213
|
+
/* Hide scrollbar for IE, Edge and Firefox */
|
|
3214
|
+
|
|
3215
|
+
.no-scrollbar {
|
|
3216
|
+
-ms-overflow-style: none; /* IE and Edge */
|
|
3217
|
+
scrollbar-width: none; /* Firefox */
|
|
3218
|
+
}
|
|
3219
|
+
|
|
3181
3220
|
@media (min-width: 640px) {
|
|
3182
3221
|
.pelcro-root .sm\:plc-space-y-0 > :not([hidden]) ~ :not([hidden]) {
|
|
3183
3222
|
--tw-space-y-reverse: 0;
|