@heycater/qualification-funnel 1.3.7 → 1.3.8
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/heycater-funnel.iife.js +222 -223
- package/dist/index.cjs.js +10 -11
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +13 -11
- package/dist/index.esm.js.map +1 -1
- package/dist/stats.html +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -25400,11 +25400,6 @@ const FormCard = styled(Box)`
|
|
|
25400
25400
|
max-width: 415px;
|
|
25401
25401
|
width: 100%;
|
|
25402
25402
|
margin: auto;
|
|
25403
|
-
position: absolute;
|
|
25404
|
-
left: 50%;
|
|
25405
|
-
top: 50%;
|
|
25406
|
-
transform: translate(-50%, -50%);
|
|
25407
|
-
|
|
25408
25403
|
padding: ${({ theme }) => theme.spacing(3, 2)};
|
|
25409
25404
|
input {
|
|
25410
25405
|
box-sizing: border-box;
|
|
@@ -25414,15 +25409,12 @@ const StyledContainer = styled.div`
|
|
|
25414
25409
|
color: #3c4340;
|
|
25415
25410
|
width: 100%;
|
|
25416
25411
|
overflow-x: hidden;
|
|
25417
|
-
height: 60vh;
|
|
25412
|
+
min-height: 60vh;
|
|
25418
25413
|
display: flex;
|
|
25414
|
+
align-items: center;
|
|
25419
25415
|
justify-content: center;
|
|
25420
25416
|
background-size: cover;
|
|
25421
25417
|
background-position: bottom center;
|
|
25422
|
-
|
|
25423
|
-
@media (max-width: 320px) {
|
|
25424
|
-
height: auto;
|
|
25425
|
-
}
|
|
25426
25418
|
`;
|
|
25427
25419
|
const StickyBottomSection = ({
|
|
25428
25420
|
children,
|
|
@@ -29207,7 +29199,10 @@ const baseMuiTheme = createTheme({
|
|
|
29207
29199
|
},
|
|
29208
29200
|
h4: {
|
|
29209
29201
|
fontSize: "24px",
|
|
29210
|
-
fontWeight: 600
|
|
29202
|
+
fontWeight: 600,
|
|
29203
|
+
[breakpoints.down("xs")]: {
|
|
29204
|
+
fontSize: "20px"
|
|
29205
|
+
}
|
|
29211
29206
|
},
|
|
29212
29207
|
h5: {
|
|
29213
29208
|
fontSize: "18px",
|
|
@@ -29373,6 +29368,13 @@ const GlobalStyles = createGlobalStyle`
|
|
|
29373
29368
|
display: none;
|
|
29374
29369
|
}
|
|
29375
29370
|
|
|
29371
|
+
/* Widget container defaults */
|
|
29372
|
+
[data-heycater-funnel] {
|
|
29373
|
+
width: 100%;
|
|
29374
|
+
min-width: 320px;
|
|
29375
|
+
box-sizing: border-box;
|
|
29376
|
+
}
|
|
29377
|
+
|
|
29376
29378
|
`;
|
|
29377
29379
|
const RATINGS_URL = "https://integrations.etrusted.com/feeds/grades/v1/channels/chl-735bd2eb-de5a-4bf6-8510-55080217cff2/touchpoints/all/feed.json";
|
|
29378
29380
|
const RATINGS_CACHE_KEY = "trustedshops_ratings";
|