@simplybusiness/theme-simplybusiness 2.16.3 → 2.16.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 +8 -0
- package/dist/index.css +103 -17
- package/package.json +2 -2
- package/src/index.css +1 -0
package/CHANGELOG.md
CHANGED
package/dist/index.css
CHANGED
|
@@ -6768,6 +6768,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6768
6768
|
width:28px;
|
|
6769
6769
|
height:30px;
|
|
6770
6770
|
margin:-4px;
|
|
6771
|
+
align-self:flex-start;
|
|
6771
6772
|
}
|
|
6772
6773
|
.mobius-showcase-embedded-quick-replies__title{
|
|
6773
6774
|
margin:0;
|
|
@@ -6782,7 +6783,6 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6782
6783
|
border-radius:var(--size-lg);
|
|
6783
6784
|
font-size:var(--font-size-small-paragraph);
|
|
6784
6785
|
font-weight:var(--font-weight-regular);
|
|
6785
|
-
white-space:nowrap;
|
|
6786
6786
|
}
|
|
6787
6787
|
.mobius-showcase-embedded-quick-replies__input-container .mobius-prompt-input__container{
|
|
6788
6788
|
padding-left:0;
|
|
@@ -7123,6 +7123,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
7123
7123
|
color:var(--color-text-medium);
|
|
7124
7124
|
margin-bottom:var(--size-xs);
|
|
7125
7125
|
margin-top:0;
|
|
7126
|
+
text-transform:uppercase;
|
|
7126
7127
|
}
|
|
7127
7128
|
.mobius-showcase__coverage,
|
|
7128
7129
|
.mobius-showcase__audience{
|
|
@@ -7131,6 +7132,73 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
7131
7132
|
line-height:var(--line-height-normal);
|
|
7132
7133
|
margin-bottom:0;
|
|
7133
7134
|
}
|
|
7135
|
+
.mobius-showcase__layout--with-faq{
|
|
7136
|
+
grid-template-columns:1fr;
|
|
7137
|
+
grid-template-rows:auto auto;
|
|
7138
|
+
row-gap:0;
|
|
7139
|
+
grid-template-areas:"showcase" "explore";
|
|
7140
|
+
}
|
|
7141
|
+
.mobius-showcase__layout--with-faq .mobius-showcase-explore{
|
|
7142
|
+
margin-top:var(--size-md);
|
|
7143
|
+
}
|
|
7144
|
+
@media screen and (min-width: 776px){
|
|
7145
|
+
.mobius-showcase__layout--with-faq{
|
|
7146
|
+
grid-template-columns:1fr 1fr 1fr minmax(auto, 320px);
|
|
7147
|
+
grid-template-rows:auto auto;
|
|
7148
|
+
grid-template-areas:"showcase showcase showcase explore" "showcase showcase showcase .";
|
|
7149
|
+
}
|
|
7150
|
+
|
|
7151
|
+
.mobius-showcase__layout--with-faq .mobius-showcase-explore{
|
|
7152
|
+
margin-top:0;
|
|
7153
|
+
}
|
|
7154
|
+
}
|
|
7155
|
+
.mobius-showcase__card--with-faq{
|
|
7156
|
+
display:flex;
|
|
7157
|
+
flex-direction:column;
|
|
7158
|
+
gap:0;
|
|
7159
|
+
border-radius:var(--radius-2);
|
|
7160
|
+
box-shadow:var(--shadow-card, 0 0 24px 0 rgba(0, 0, 0, 0.16));
|
|
7161
|
+
background:var(--color-background);
|
|
7162
|
+
overflow:hidden;
|
|
7163
|
+
}
|
|
7164
|
+
@media screen and (min-width: 776px){
|
|
7165
|
+
.mobius-showcase__card--with-faq{
|
|
7166
|
+
display:grid;
|
|
7167
|
+
}
|
|
7168
|
+
|
|
7169
|
+
@supports (grid-template-rows: subgrid){
|
|
7170
|
+
.mobius-showcase__card--with-faq{
|
|
7171
|
+
grid-template-rows:subgrid;
|
|
7172
|
+
grid-row:span 2;
|
|
7173
|
+
}
|
|
7174
|
+
}
|
|
7175
|
+
}
|
|
7176
|
+
.mobius-showcase__card-content{
|
|
7177
|
+
display:flex;
|
|
7178
|
+
flex-direction:column;
|
|
7179
|
+
}
|
|
7180
|
+
@media screen and (min-width: 640px){
|
|
7181
|
+
.mobius-showcase__card-content{
|
|
7182
|
+
flex-direction:row;
|
|
7183
|
+
}
|
|
7184
|
+
|
|
7185
|
+
.mobius-showcase__card--with-faq .mobius-showcase__content{
|
|
7186
|
+
order:unset;
|
|
7187
|
+
flex:1;
|
|
7188
|
+
}
|
|
7189
|
+
|
|
7190
|
+
.mobius-showcase__card--with-faq .mobius-showcase__image-wrapper{
|
|
7191
|
+
order:unset;
|
|
7192
|
+
flex-basis:280px;
|
|
7193
|
+
flex-shrink:0;
|
|
7194
|
+
border-radius:32px;
|
|
7195
|
+
margin:var(--size-md) var(--size-md) var(--size-md) 0;
|
|
7196
|
+
}
|
|
7197
|
+
}
|
|
7198
|
+
.mobius-showcase__faq-section{
|
|
7199
|
+
padding:var(--size-md);
|
|
7200
|
+
padding-top:0;
|
|
7201
|
+
}
|
|
7134
7202
|
.mobius-sms-button__sms-message{
|
|
7135
7203
|
display:flex;
|
|
7136
7204
|
justify-content:center;
|
|
@@ -7501,7 +7569,6 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
7501
7569
|
}
|
|
7502
7570
|
@media (max-width: 640px){
|
|
7503
7571
|
.mobius-payment-summary__checkout-button.combined-payment-page-sticky{
|
|
7504
|
-
padding:var(--size-xs);
|
|
7505
7572
|
margin-top:var(--size-sm);
|
|
7506
7573
|
width:100%;
|
|
7507
7574
|
}
|
|
@@ -7516,25 +7583,41 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
7516
7583
|
margin-bottom:var(--size-md);
|
|
7517
7584
|
}
|
|
7518
7585
|
.mobius-payment-cta-container-align-left .mobius-payment-summary__checkout-button{
|
|
7519
|
-
|
|
7520
|
-
|
|
7521
|
-
:is(.mobius-payment-cta-container-align-left .mobius-payment-cta__popover-wrapper) .mobius-popover__toggle{
|
|
7522
|
-
background:transparent;
|
|
7523
|
-
padding:0;
|
|
7524
|
-
font-weight:var(--font-weight-normal);
|
|
7525
|
-
font-size:var(--font-size-2);
|
|
7586
|
+
width:100%;
|
|
7587
|
+
margin-top:var(--size-md);
|
|
7526
7588
|
}
|
|
7527
|
-
|
|
7528
|
-
|
|
7589
|
+
.mobius-payment-cta-container-align-left .mobius-payment-cta__popover-wrapper{
|
|
7590
|
+
justify-content:center;
|
|
7591
|
+
display:flex;
|
|
7592
|
+
align-items:center;
|
|
7529
7593
|
}
|
|
7594
|
+
:is(.mobius-payment-cta-container-align-left .mobius-payment-cta__popover-wrapper) .mobius-popover__toggle{
|
|
7595
|
+
background:transparent;
|
|
7596
|
+
padding:0;
|
|
7597
|
+
font-weight:var(--font-weight-normal);
|
|
7598
|
+
font-size:var(--font-size-2);
|
|
7599
|
+
}
|
|
7600
|
+
:is(.mobius-payment-cta-container-align-left .mobius-payment-cta__popover-wrapper) .mobius-icon{
|
|
7601
|
+
font-size:var(--size-md);
|
|
7602
|
+
}
|
|
7530
7603
|
:is(.mobius-payment-cta-container-align-left .mobius-payment-cta__popover-wrapper) .mobius-quote-card__explainer-icon{
|
|
7531
|
-
|
|
7532
|
-
|
|
7604
|
+
width:var(--size-sm);
|
|
7605
|
+
}
|
|
7533
7606
|
@media (max-width: 640px){
|
|
7534
|
-
|
|
7535
|
-
|
|
7536
|
-
|
|
7537
|
-
|
|
7607
|
+
:is(.mobius-payment-cta-container-align-left .mobius-payment-cta__popover-wrapper) .mobius-flex{
|
|
7608
|
+
justify-content:center;
|
|
7609
|
+
}
|
|
7610
|
+
}
|
|
7611
|
+
.mobius-payment-cta-container-align-center{
|
|
7612
|
+
justify-content:center;
|
|
7613
|
+
display:block;
|
|
7614
|
+
flex-direction:column;
|
|
7615
|
+
align-items:flex-start;
|
|
7616
|
+
margin-bottom:var(--size-md);
|
|
7617
|
+
}
|
|
7618
|
+
.mobius-payment-cta-container-align-center > .mobius-flex{
|
|
7619
|
+
width:100%;
|
|
7620
|
+
}
|
|
7538
7621
|
@media (max-width: 640px){
|
|
7539
7622
|
.mobius-payment-cta-container, .mobius-payment-cta-container-align-left{
|
|
7540
7623
|
justify-content:center;
|
|
@@ -7547,6 +7630,9 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
7547
7630
|
padding:var(--size-xs);
|
|
7548
7631
|
margin-top:var(--size-sm);
|
|
7549
7632
|
}
|
|
7633
|
+
.mobius-payment-summary__checklist-container{
|
|
7634
|
+
margin-top:var(--size-lg);
|
|
7635
|
+
}
|
|
7550
7636
|
.mobius-dialogue-modal{
|
|
7551
7637
|
display:contents;
|
|
7552
7638
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "2.16.
|
|
3
|
+
"version": "2.16.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.23",
|
|
33
33
|
"@simplybusiness/mobius-datepicker": "^8.0.3",
|
|
34
34
|
"@simplybusiness/mobius-interventions": "^3.15.3",
|
|
35
|
-
"@simplybusiness/mobius-journey": "^12.
|
|
35
|
+
"@simplybusiness/mobius-journey": "^12.2.0",
|
|
36
36
|
"@simplybusiness/theme-core": "^7.14.25"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
package/src/index.css
CHANGED
|
@@ -90,6 +90,7 @@
|
|
|
90
90
|
@import "@simplybusiness/mobius-journey/src/components/shared/PaymentElementCardForm/PaymentElementCardForm.css";
|
|
91
91
|
@import "@simplybusiness/mobius-journey/src/components/Questionnaire/WindowLocks/WindowLocks.css";
|
|
92
92
|
@import "@simplybusiness/mobius-journey/src/components/Showcase/Showcase.css";
|
|
93
|
+
@import "@simplybusiness/mobius-journey/src/components/Showcase/ShowcaseTreatmentEmbeddedQuickReplies.css";
|
|
93
94
|
@import "@simplybusiness/mobius-journey/src/components/SmsButton/SmsButton.css";
|
|
94
95
|
/* Journey Components (payment summary, etc.) */
|
|
95
96
|
@import "@simplybusiness/mobius-journey/src/components/shared/PersistentSummary/styles.css";
|