@simplybusiness/theme-simplybusiness 2.11.3 → 2.11.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.
- package/CHANGELOG.md +7 -0
- package/dist/index.css +35 -0
- package/package.json +2 -2
- package/src/index.css +1 -0
package/CHANGELOG.md
CHANGED
package/dist/index.css
CHANGED
|
@@ -6456,6 +6456,41 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6456
6456
|
padding-right:var(--size-sm);
|
|
6457
6457
|
transition:height 1s;
|
|
6458
6458
|
}
|
|
6459
|
+
.questionnaire-page__container{
|
|
6460
|
+
padding:0 10%;
|
|
6461
|
+
display:flex;
|
|
6462
|
+
gap:20px;
|
|
6463
|
+
}
|
|
6464
|
+
.questionnaire-page__questionnaire{
|
|
6465
|
+
padding:20px;
|
|
6466
|
+
flex:1;
|
|
6467
|
+
min-width:60%;
|
|
6468
|
+
}
|
|
6469
|
+
.questionnaire-page__questionnaire .mobius-section__question-container{
|
|
6470
|
+
max-width:100%;
|
|
6471
|
+
}
|
|
6472
|
+
.questionnaire-page__coverage-summary{
|
|
6473
|
+
margin-top:118px;
|
|
6474
|
+
padding:20px;
|
|
6475
|
+
flex:2;
|
|
6476
|
+
min-width:30%;
|
|
6477
|
+
}
|
|
6478
|
+
@media (max-width: 1032px){
|
|
6479
|
+
.questionnaire-page__container{
|
|
6480
|
+
padding:0;
|
|
6481
|
+
}
|
|
6482
|
+
|
|
6483
|
+
}
|
|
6484
|
+
@media (max-width: 847px){
|
|
6485
|
+
.questionnaire-page__container{
|
|
6486
|
+
flex-direction:column;
|
|
6487
|
+
}
|
|
6488
|
+
|
|
6489
|
+
.questionnaire-page__coverage-summary{
|
|
6490
|
+
margin-top:0;
|
|
6491
|
+
min-width:0;
|
|
6492
|
+
}
|
|
6493
|
+
}
|
|
6459
6494
|
.stripe-payment__journey-errors,
|
|
6460
6495
|
.stripe-payment__js-errors{
|
|
6461
6496
|
color:var(--color-red-500);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.4",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@simplybusiness/mobius-chatbot": "^2.2.7",
|
|
33
33
|
"@simplybusiness/mobius-datepicker": "^7.3.7",
|
|
34
34
|
"@simplybusiness/mobius-interventions": "^3.4.1",
|
|
35
|
-
"@simplybusiness/mobius-journey": "^11.
|
|
35
|
+
"@simplybusiness/mobius-journey": "^11.24.0",
|
|
36
36
|
"@simplybusiness/theme-core": "^7.14.9"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
package/src/index.css
CHANGED
|
@@ -90,6 +90,7 @@
|
|
|
90
90
|
@import "@simplybusiness/mobius-journey/src/components/SkipToNextCoverage/SkipToNextCoverage.css";
|
|
91
91
|
@import "@simplybusiness/mobius-journey/src/pages/AgentReferralPage/AgentReferralContainer.css";
|
|
92
92
|
@import "@simplybusiness/mobius-journey/src/pages/Main.css";
|
|
93
|
+
@import "@simplybusiness/mobius-journey/src/pages/PostQuoteQuestionnairePage/PostQuoteQuestionnairePage.css";
|
|
93
94
|
@import "@simplybusiness/mobius-journey/src/components/shared/PaymentElementCardForm/PaymentElementCardForm.css";
|
|
94
95
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/WindowLocks/WindowLocks.css";
|
|
95
96
|
@import "@simplybusiness/mobius-journey/src/components/Showcase/Showcase.css";
|