@simplybusiness/theme-simplybusiness 0.5.2 → 0.5.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 +35 -0
- package/dist/index.css +162 -28
- package/package.json +6 -6
- package/src/index.css +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 0.5.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [e1d934b]
|
|
8
|
+
- Updated dependencies [9cb7e7b]
|
|
9
|
+
- Updated dependencies [57657e2]
|
|
10
|
+
- Updated dependencies [71a75a6]
|
|
11
|
+
- Updated dependencies [24109a0]
|
|
12
|
+
- @simplybusiness/mobius-journey@6.8.0
|
|
13
|
+
|
|
14
|
+
## 0.5.3
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 591033f: Adds No Quotes Referral content for UK
|
|
19
|
+
- Updated dependencies [35dedb3]
|
|
20
|
+
- Updated dependencies [8c5f210]
|
|
21
|
+
- Updated dependencies [7ba4708]
|
|
22
|
+
- Updated dependencies [982456d]
|
|
23
|
+
- Updated dependencies [591033f]
|
|
24
|
+
- Updated dependencies [e4b945a]
|
|
25
|
+
- Updated dependencies [8bafced]
|
|
26
|
+
- Updated dependencies [8ef7a22]
|
|
27
|
+
- Updated dependencies [8e8b480]
|
|
28
|
+
- Updated dependencies [749961a]
|
|
29
|
+
- Updated dependencies [fe4fc40]
|
|
30
|
+
- Updated dependencies [cf95eca]
|
|
31
|
+
- Updated dependencies [144feef]
|
|
32
|
+
- Updated dependencies [b71410a]
|
|
33
|
+
- @simplybusiness/mobius-journey@6.7.0
|
|
34
|
+
- @simplybusiness/mobius@5.3.0
|
|
35
|
+
- @simplybusiness/mobius-datepicker@6.0.6
|
|
36
|
+
- @simplybusiness/theme-core@7.1.4
|
|
37
|
+
|
|
3
38
|
## 0.5.2
|
|
4
39
|
|
|
5
40
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -3177,11 +3177,17 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3177
3177
|
}
|
|
3178
3178
|
.mobius-cover-toggles-container__outer.--is-payment-aside{
|
|
3179
3179
|
display:grid;
|
|
3180
|
-
grid-template-columns:1fr
|
|
3180
|
+
grid-template-columns:1fr;
|
|
3181
3181
|
column-gap:var(--size-lg);
|
|
3182
3182
|
row-gap:var(--size-sm);
|
|
3183
3183
|
align-items:self-start;
|
|
3184
3184
|
}
|
|
3185
|
+
.mobius-cover-toggles-container{
|
|
3186
|
+
display:grid;
|
|
3187
|
+
grid-template-columns:repeat(auto-fill, minmax(300px, 1fr));
|
|
3188
|
+
gap:var(--size-sm);
|
|
3189
|
+
margin-bottom:var(--size-sm);
|
|
3190
|
+
}
|
|
3185
3191
|
.mobius-cover-toggles-container .mobius-cover-toggle{
|
|
3186
3192
|
margin-bottom:0;
|
|
3187
3193
|
align-self:end;
|
|
@@ -3189,16 +3195,14 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3189
3195
|
.mobius-cover-toggles-container .mobius-select__outer{
|
|
3190
3196
|
margin-bottom:0;
|
|
3191
3197
|
}
|
|
3192
|
-
.mobius-cover-toggles-container.--is-desktop{
|
|
3193
|
-
display:grid;
|
|
3194
|
-
grid-template-columns:repeat(3, 1fr);
|
|
3195
|
-
column-gap:var(--size-lg);
|
|
3196
|
-
row-gap:var(--size-sm);
|
|
3197
|
-
align-items:end;
|
|
3198
|
-
}
|
|
3199
3198
|
.mobius-cover-toggles-container.--is-collapsible{
|
|
3200
3199
|
padding-top:var(--size-xs);
|
|
3201
3200
|
}
|
|
3201
|
+
@media (min-width: 600px){
|
|
3202
|
+
.mobius-cover-toggles-container__outer.--is-payment-aside{
|
|
3203
|
+
grid-template-columns:1fr auto;
|
|
3204
|
+
}
|
|
3205
|
+
}
|
|
3202
3206
|
.mobius-edit-limits__button{
|
|
3203
3207
|
display:flex;
|
|
3204
3208
|
gap:var(--size-xs);
|
|
@@ -3316,12 +3320,15 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3316
3320
|
.mobius-quote-headline__highlight{
|
|
3317
3321
|
color:var(--color-primary);
|
|
3318
3322
|
}
|
|
3319
|
-
.mobius-quote-headline__text
|
|
3323
|
+
.mobius-quote-headline__text{
|
|
3320
3324
|
font-size:var(--font-size-3);
|
|
3321
3325
|
margin:0 4%;
|
|
3322
3326
|
text-align:center;
|
|
3323
3327
|
}
|
|
3324
|
-
.mobius-quote-
|
|
3328
|
+
.mobius-quote-headline__text--variant-without-qdp-drawer{
|
|
3329
|
+
font-size:var(--font-size-2);
|
|
3330
|
+
}
|
|
3331
|
+
.mobius-quote-headline__title{
|
|
3325
3332
|
font-size:var(--font-size-title);
|
|
3326
3333
|
margin:0;
|
|
3327
3334
|
}
|
|
@@ -3344,10 +3351,14 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3344
3351
|
margin-bottom:var(--size-lg);
|
|
3345
3352
|
}
|
|
3346
3353
|
@media (min-width: 850px){
|
|
3347
|
-
|
|
3348
|
-
|
|
3349
|
-
|
|
3350
|
-
|
|
3354
|
+
.mobius-quote-headline__text{
|
|
3355
|
+
font-size:var(--font-size-4);
|
|
3356
|
+
margin:20px;
|
|
3357
|
+
}
|
|
3358
|
+
|
|
3359
|
+
.mobius-quote-headline__text--variant-without-qdp-drawer{
|
|
3360
|
+
font-size:var(--font-size-2);
|
|
3361
|
+
}
|
|
3351
3362
|
}
|
|
3352
3363
|
:root,
|
|
3353
3364
|
:host{
|
|
@@ -3651,9 +3662,13 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3651
3662
|
text-decoration:underline;
|
|
3652
3663
|
text-underline-offset:6px;
|
|
3653
3664
|
}
|
|
3654
|
-
.mobius-quote-actions{
|
|
3665
|
+
.mobius-quote-actions-form{
|
|
3666
|
+
display:flex;
|
|
3655
3667
|
align-items:flex-end;
|
|
3656
3668
|
}
|
|
3669
|
+
.mobius-quote-actions{
|
|
3670
|
+
width:100%;
|
|
3671
|
+
}
|
|
3657
3672
|
@supports (-webkit-touch-callout: none) and (not (translate: none)){
|
|
3658
3673
|
.mobius-quote-actions :not(:last-child){
|
|
3659
3674
|
margin-right:var(--size-sm);
|
|
@@ -3666,13 +3681,23 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3666
3681
|
font-size:var(--font-size-regular);
|
|
3667
3682
|
font-weight:var(--font-weight-bold);
|
|
3668
3683
|
}
|
|
3684
|
+
:where([data-variant="without-qdp-drawer"]) .mobius-quote-actions__button{
|
|
3685
|
+
margin-top:0;
|
|
3686
|
+
}
|
|
3687
|
+
:where([data-variant="without-qdp-drawer"]) .mobius-quote-actions__button--is-details{
|
|
3688
|
+
display:none;
|
|
3689
|
+
}
|
|
3690
|
+
@media (min-width: 850px){
|
|
3691
|
+
:where([data-variant="without-qdp-drawer"]) .mobius-quote-actions__button--is-details{
|
|
3692
|
+
display:block;
|
|
3693
|
+
}
|
|
3694
|
+
}
|
|
3669
3695
|
.mobius-quote-card{
|
|
3670
3696
|
display:grid;
|
|
3671
3697
|
grid-template-areas:"header" "pricing" "coverage" "actions";
|
|
3672
3698
|
grid-auto-rows:auto;
|
|
3673
3699
|
padding:var(--size-lg) var(--size-sm);
|
|
3674
3700
|
font-size:var(--font-size-regular);
|
|
3675
|
-
height:100%;
|
|
3676
3701
|
margin:0;
|
|
3677
3702
|
border:1px solid var(--color-border);
|
|
3678
3703
|
border-radius:var(--radius-2);
|
|
@@ -3708,7 +3733,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3708
3733
|
@media (min-width: 850px){
|
|
3709
3734
|
.--is-horizontal .mobius-quote-card{
|
|
3710
3735
|
grid-template-areas:"header coverage pricing" "header coverage actions";
|
|
3711
|
-
grid-template-columns:
|
|
3736
|
+
grid-template-columns:160px 1fr 1fr;
|
|
3712
3737
|
grid-template-rows:repeat(2, auto);
|
|
3713
3738
|
row-gap:49px;
|
|
3714
3739
|
padding:var(--size-lg);
|
|
@@ -3735,6 +3760,9 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3735
3760
|
margin-top:var(--size-xs);
|
|
3736
3761
|
margin-bottom:var(--size-sm);
|
|
3737
3762
|
}
|
|
3763
|
+
.mobius-quote-card__badges.--is-uk{
|
|
3764
|
+
margin:0;
|
|
3765
|
+
}
|
|
3738
3766
|
@supports (-webkit-touch-callout: none) and (not (translate: none)){
|
|
3739
3767
|
.mobius-quote-card__badges:not(:last-child){
|
|
3740
3768
|
margin-bottom:var(--size-xs);
|
|
@@ -3803,15 +3831,29 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3803
3831
|
margin:0;
|
|
3804
3832
|
font-size:var(--font-size-small-paragraph);
|
|
3805
3833
|
}
|
|
3834
|
+
.--is-horizontal .mobius-quote-card__coverage{
|
|
3835
|
+
margin-bottom:0;
|
|
3836
|
+
border:none;
|
|
3837
|
+
}
|
|
3806
3838
|
@media (min-width: 850px){
|
|
3807
3839
|
.--is-horizontal .mobius-quote-card__coverage{
|
|
3808
|
-
border-top:none;
|
|
3809
|
-
border-right:1px solid var(--color-border-light);
|
|
3810
3840
|
padding-right:var(--size-sm);
|
|
3811
|
-
margin-bottom:0;
|
|
3812
|
-
margin-right:var(--size-sm);
|
|
3813
3841
|
}
|
|
3814
3842
|
}
|
|
3843
|
+
:is(.--is-horizontal .mobius-quote-card__coverage) .mobius-quote-card__coverage-item{
|
|
3844
|
+
display:grid;
|
|
3845
|
+
align-items:center;
|
|
3846
|
+
grid-template-columns:3fr minmax(0, 2fr) minmax(0, 1fr);
|
|
3847
|
+
}
|
|
3848
|
+
:is(.--is-horizontal .mobius-quote-card__coverage) .mobius-grid__item{
|
|
3849
|
+
line-height:var(--line-height-normal);
|
|
3850
|
+
}
|
|
3851
|
+
:is(.--is-horizontal .mobius-quote-card__coverage) .mobius-accordion__link{
|
|
3852
|
+
justify-content:center;
|
|
3853
|
+
}
|
|
3854
|
+
:is(.--is-horizontal .mobius-quote-card__coverage) .mobius-accordion__link-text,:is(.--is-horizontal .mobius-quote-card__coverage) .mobius-accordion__link-icon{
|
|
3855
|
+
font-size:var(--font-size-small-paragraph);
|
|
3856
|
+
}
|
|
3815
3857
|
.mobius-quote-card__coverage-title.mobius-text{
|
|
3816
3858
|
margin:0 0 16px 0;
|
|
3817
3859
|
text-transform:uppercase;
|
|
@@ -3846,6 +3888,13 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3846
3888
|
margin-right:var(--size-xs);
|
|
3847
3889
|
min-width:var(--size-sm);
|
|
3848
3890
|
}
|
|
3891
|
+
.mobius-quote-card__coverage-cross-icon{
|
|
3892
|
+
margin-top:2px;
|
|
3893
|
+
width:var(--size-sm);
|
|
3894
|
+
color:var(--color-error);
|
|
3895
|
+
margin-right:var(--size-xs);
|
|
3896
|
+
min-width:var(--size-sm);
|
|
3897
|
+
}
|
|
3849
3898
|
.mobius-quote-card__included-by-insurer-icon{
|
|
3850
3899
|
margin-bottom:5px;
|
|
3851
3900
|
width:var(--size-sm);
|
|
@@ -3893,6 +3942,33 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3893
3942
|
:is(.mobius-quote-card__coverage-item .mobius-accordion__content) .mobius-quote-card__cover:last-child{
|
|
3894
3943
|
margin-bottom:0;
|
|
3895
3944
|
}
|
|
3945
|
+
.mobius-quote-card__coverage-item-excess-link{
|
|
3946
|
+
-webkit-text-decoration:underline;
|
|
3947
|
+
text-decoration:underline;
|
|
3948
|
+
text-underline-offset:5px;
|
|
3949
|
+
}
|
|
3950
|
+
.mobius-quote-card__coverage-item-excess-modal .mobius-modal__header{
|
|
3951
|
+
align-items:center;
|
|
3952
|
+
font-size:var(--font-size-lead);
|
|
3953
|
+
padding-bottom:0;
|
|
3954
|
+
}
|
|
3955
|
+
.mobius-quote-card__coverage-item-excess-modal .mobius-modal__content{
|
|
3956
|
+
margin-top:var(--size-xs);
|
|
3957
|
+
}
|
|
3958
|
+
.mobius-quote-card__coverage-item-excess-modal .mobius-quote-card__cover{
|
|
3959
|
+
color:var(--color-text);
|
|
3960
|
+
font-size:var(--font-size-small-paragraph);
|
|
3961
|
+
margin:var(--size-xxs) 0;
|
|
3962
|
+
padding-left:0;
|
|
3963
|
+
}
|
|
3964
|
+
.mobius-quote-card__coverage-item-excess-modal .mobius-quote-card__cover-amount{
|
|
3965
|
+
max-width:70%;
|
|
3966
|
+
text-align:right;
|
|
3967
|
+
}
|
|
3968
|
+
.mobius-quote-card__coverage-item-excess-modal .mobius-modal__close{
|
|
3969
|
+
font-size:var(--font-size-regular);
|
|
3970
|
+
padding:calc(var(--size-xs) + var(--size-xxs)) calc(var(--size-sm) + 2px);
|
|
3971
|
+
}
|
|
3896
3972
|
.mobius-quote-card__deductibles-title.--is-p{
|
|
3897
3973
|
margin-top:4px;
|
|
3898
3974
|
margin-bottom:0;
|
|
@@ -3945,11 +4021,22 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3945
4021
|
}
|
|
3946
4022
|
}
|
|
3947
4023
|
.mobius-quote-card__header-logo{
|
|
3948
|
-
max-width:144px;
|
|
3949
4024
|
max-height:var(--size-xl);
|
|
3950
4025
|
object-fit:contain;
|
|
3951
4026
|
object-position:left;
|
|
3952
4027
|
}
|
|
4028
|
+
.mobius-quote-card__header-logo.--is-uk{
|
|
4029
|
+
object-position:center;
|
|
4030
|
+
max-height:50px;
|
|
4031
|
+
margin-bottom:var(--size-sm);
|
|
4032
|
+
}
|
|
4033
|
+
@media (min-width: 850px){
|
|
4034
|
+
.mobius-quote-card__header-logo.--is-uk{
|
|
4035
|
+
object-position:left;
|
|
4036
|
+
max-height:var(--size-xl);
|
|
4037
|
+
margin-bottom:0;
|
|
4038
|
+
}
|
|
4039
|
+
}
|
|
3953
4040
|
.mobius-quote-card__explainer-title{
|
|
3954
4041
|
color:var(--color-text-medium);
|
|
3955
4042
|
-webkit-text-decoration:underline;
|
|
@@ -4033,6 +4120,9 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4033
4120
|
grid-area:pricing;
|
|
4034
4121
|
width:100%;
|
|
4035
4122
|
}
|
|
4123
|
+
.mobius-quote-card__pricing.--is-uk{
|
|
4124
|
+
margin-top:0;
|
|
4125
|
+
}
|
|
4036
4126
|
.mobius-quote-card__pricing-primary-amount.mobius-text{
|
|
4037
4127
|
font-size:var(--font-size-title);
|
|
4038
4128
|
font-weight:var(--font-weight-bold);
|
|
@@ -4040,6 +4130,9 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4040
4130
|
margin-top:0;
|
|
4041
4131
|
margin-bottom:0;
|
|
4042
4132
|
}
|
|
4133
|
+
.mobius-quote-card__pricing-primary-amount.mobius-text.--is-uk{
|
|
4134
|
+
font-size:28px;
|
|
4135
|
+
}
|
|
4043
4136
|
.mobius-quote-card__pricing-total-amount.mobius-text{
|
|
4044
4137
|
font-weight:var(--font-weight-bold);
|
|
4045
4138
|
text-align:right;
|
|
@@ -4068,6 +4161,20 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4068
4161
|
border-left:var(--size-xxs) solid var(--color-accent);
|
|
4069
4162
|
padding-left:var(--size-xs);
|
|
4070
4163
|
}
|
|
4164
|
+
.mobius-quote-card__instalments-grid{
|
|
4165
|
+
display:grid;
|
|
4166
|
+
grid-template-columns:1fr auto;
|
|
4167
|
+
gap:var(--size-xs);
|
|
4168
|
+
margin-top:var(--size-xs);
|
|
4169
|
+
color:var(--color-text-medium);
|
|
4170
|
+
}
|
|
4171
|
+
.mobius-quote-card__instalments-grid p{
|
|
4172
|
+
font-size:var(--font-size-small-paragraph);
|
|
4173
|
+
margin:0;
|
|
4174
|
+
}
|
|
4175
|
+
.mobius-quote-card__instalments-grid .mobius-quote-card__instalment_amount{
|
|
4176
|
+
text-align:right;
|
|
4177
|
+
}
|
|
4071
4178
|
.mobius-quote-card__amount-due-iterated.mobius-text{
|
|
4072
4179
|
font-size:var(--font-size-small-paragraph);
|
|
4073
4180
|
color:var(--color-text-medium);
|
|
@@ -4240,15 +4347,42 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4240
4347
|
object-fit:contain;
|
|
4241
4348
|
object-position:left;
|
|
4242
4349
|
}
|
|
4243
|
-
.
|
|
4244
|
-
|
|
4245
|
-
|
|
4350
|
+
.no-quotes-referral__container{
|
|
4351
|
+
display:grid;
|
|
4352
|
+
grid-template-columns:1fr;
|
|
4353
|
+
align-items:center;
|
|
4354
|
+
justify-content:center;
|
|
4355
|
+
gap:var(--size-xs);
|
|
4356
|
+
text-align:center;
|
|
4246
4357
|
}
|
|
4247
|
-
|
|
4248
|
-
|
|
4249
|
-
|
|
4358
|
+
.no-quotes-referral__insurer-panel{
|
|
4359
|
+
display:grid;
|
|
4360
|
+
grid-template-columns:repeat(auto-fit, minmax(64px, 1fr));
|
|
4361
|
+
gap:var(--size-xs);
|
|
4362
|
+
}
|
|
4363
|
+
.no-quotes-referral__insurer-panel *{
|
|
4364
|
+
justify-self:center;
|
|
4365
|
+
}
|
|
4366
|
+
.no-quotes-referral-logo{
|
|
4367
|
+
width:64px;
|
|
4368
|
+
height:30px;
|
|
4369
|
+
object-fit:contain;
|
|
4370
|
+
object-position:center;
|
|
4371
|
+
gap:var(--size-xs);
|
|
4250
4372
|
}
|
|
4373
|
+
@media (min-width: 850px){
|
|
4374
|
+
.no-quotes-referral__container{
|
|
4375
|
+
gap:var(--size-lg);
|
|
4251
4376
|
}
|
|
4377
|
+
.no-quotes-referral__insurer-panel{
|
|
4378
|
+
grid-template-columns:repeat(auto-fit, minmax(128px, 1fr));
|
|
4379
|
+
gap:var(--size-md);
|
|
4380
|
+
}
|
|
4381
|
+
.no-quotes-referral-logo{
|
|
4382
|
+
width:128px;
|
|
4383
|
+
height:60px;
|
|
4384
|
+
}
|
|
4385
|
+
}
|
|
4252
4386
|
.mobius-quote-help{
|
|
4253
4387
|
--chopin-quote-help-message-background:var(--color-background-highlight);
|
|
4254
4388
|
--chopin-quote-help-arrow-size:var(--size-xs);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.4",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"./fonts": "./dist/fonts.css"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@simplybusiness/mobius": "^5.
|
|
30
|
-
"@simplybusiness/mobius-datepicker": "^6.0.
|
|
31
|
-
"@simplybusiness/mobius-journey": "^6.
|
|
32
|
-
"@simplybusiness/theme-core": "^7.1.
|
|
29
|
+
"@simplybusiness/mobius": "^5.3.0",
|
|
30
|
+
"@simplybusiness/mobius-datepicker": "^6.0.6",
|
|
31
|
+
"@simplybusiness/mobius-journey": "^6.8.0",
|
|
32
|
+
"@simplybusiness/theme-core": "^7.1.4"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"css-loader": "^7.1.2",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"resolve-url-loader": "^5.0.0",
|
|
45
45
|
"ts-loader": "^9.5.1",
|
|
46
46
|
"typescript": "^5.6.2",
|
|
47
|
-
"webpack": "^5.
|
|
47
|
+
"webpack": "^5.95.0",
|
|
48
48
|
"webpack-cli": "^5.1.4"
|
|
49
49
|
}
|
|
50
50
|
}
|
package/src/index.css
CHANGED
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
@import "@simplybusiness/mobius-journey/src/components/QuoteComparison/Headline/QuoteHeadline.css";
|
|
30
30
|
@import "@simplybusiness/mobius-journey/src/components/QuoteComparison/PaymentToggle/PaymentToggle.css";
|
|
31
31
|
@import "@simplybusiness/mobius-journey/src/components/QuoteComparison/QuoteCards/QuoteCards.css";
|
|
32
|
+
@import "@simplybusiness/mobius-journey/src/components/QuoteComparison/QuoteCards/NoQuotesReferral/NoQuotesReferral.css";
|
|
32
33
|
@import "@simplybusiness/mobius-journey/src/components/QuoteHelp/QuoteHelp.css";
|
|
33
34
|
@import "@simplybusiness/mobius-journey/src/components/Referral/Referral.css";
|
|
34
35
|
@import "@simplybusiness/mobius-journey/src/components/TradeSelector/TradeSelector.css";
|