@simplybusiness/theme-simplybusiness 0.5.3 → 0.5.5
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 +20 -0
- package/dist/index.css +37 -17
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 0.5.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [47a6bdc]
|
|
8
|
+
- Updated dependencies [3df5cbe]
|
|
9
|
+
- Updated dependencies [ed9eedb]
|
|
10
|
+
- @simplybusiness/mobius-journey@6.8.1
|
|
11
|
+
|
|
12
|
+
## 0.5.4
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [e1d934b]
|
|
17
|
+
- Updated dependencies [9cb7e7b]
|
|
18
|
+
- Updated dependencies [57657e2]
|
|
19
|
+
- Updated dependencies [71a75a6]
|
|
20
|
+
- Updated dependencies [24109a0]
|
|
21
|
+
- @simplybusiness/mobius-journey@6.8.0
|
|
22
|
+
|
|
3
23
|
## 0.5.3
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -3681,13 +3681,23 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3681
3681
|
font-size:var(--font-size-regular);
|
|
3682
3682
|
font-weight:var(--font-weight-bold);
|
|
3683
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
|
+
}
|
|
3684
3695
|
.mobius-quote-card{
|
|
3685
3696
|
display:grid;
|
|
3686
3697
|
grid-template-areas:"header" "pricing" "coverage" "actions";
|
|
3687
3698
|
grid-auto-rows:auto;
|
|
3688
3699
|
padding:var(--size-lg) var(--size-sm);
|
|
3689
3700
|
font-size:var(--font-size-regular);
|
|
3690
|
-
height:100%;
|
|
3691
3701
|
margin:0;
|
|
3692
3702
|
border:1px solid var(--color-border);
|
|
3693
3703
|
border-radius:var(--radius-2);
|
|
@@ -3712,7 +3722,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3712
3722
|
grid-template-areas:"header coverage pricing" "header coverage actions";
|
|
3713
3723
|
grid-template-columns:repeat(3, 1fr);
|
|
3714
3724
|
grid-template-rows:repeat(2, auto);
|
|
3715
|
-
|
|
3725
|
+
gap:var(--size-lg);
|
|
3716
3726
|
padding:var(--size-lg);
|
|
3717
3727
|
grid-row:span 1;
|
|
3718
3728
|
}
|
|
@@ -3731,16 +3741,28 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3731
3741
|
}
|
|
3732
3742
|
}
|
|
3733
3743
|
.mobius-quote-card__no-quote{
|
|
3734
|
-
|
|
3744
|
+
display:grid;
|
|
3745
|
+
grid-template-areas:"header information";
|
|
3746
|
+
grid-template-columns:1fr 1fr;
|
|
3735
3747
|
padding:var(--size-sm);
|
|
3736
|
-
|
|
3748
|
+
border:1px solid var(--color-border);
|
|
3749
|
+
border-radius:var(--radius-2);
|
|
3750
|
+
background-color:var(--color-background);
|
|
3751
|
+
list-style:none;
|
|
3737
3752
|
}
|
|
3738
3753
|
@media (min-width: 850px){
|
|
3739
3754
|
.mobius-quote-card__no-quote{
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3755
|
+
grid-template-columns:160px 1fr;
|
|
3756
|
+
padding:var(--size-sm) var(--size-lg);
|
|
3757
|
+
}
|
|
3758
|
+
}
|
|
3759
|
+
.mobius-quote-card__no-quote-logo{
|
|
3760
|
+
display:flex;
|
|
3761
|
+
justify-content:center;
|
|
3762
|
+
}
|
|
3763
|
+
@media (min-width: 850px){
|
|
3764
|
+
.mobius-quote-card__no-quote-logo{
|
|
3765
|
+
justify-content:flex-start;
|
|
3744
3766
|
}
|
|
3745
3767
|
}
|
|
3746
3768
|
.mobius-quote-card__badges{
|
|
@@ -3838,6 +3860,12 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3838
3860
|
:is(.--is-horizontal .mobius-quote-card__coverage) .mobius-grid__item{
|
|
3839
3861
|
line-height:var(--line-height-normal);
|
|
3840
3862
|
}
|
|
3863
|
+
:is(.--is-horizontal .mobius-quote-card__coverage) .mobius-accordion__link{
|
|
3864
|
+
justify-content:center;
|
|
3865
|
+
}
|
|
3866
|
+
:is(.--is-horizontal .mobius-quote-card__coverage) .mobius-accordion__link-text,:is(.--is-horizontal .mobius-quote-card__coverage) .mobius-accordion__link-icon{
|
|
3867
|
+
font-size:var(--font-size-small-paragraph);
|
|
3868
|
+
}
|
|
3841
3869
|
.mobius-quote-card__coverage-title.mobius-text{
|
|
3842
3870
|
margin:0 0 16px 0;
|
|
3843
3871
|
text-transform:uppercase;
|
|
@@ -4148,6 +4176,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4148
4176
|
.mobius-quote-card__instalments-grid{
|
|
4149
4177
|
display:grid;
|
|
4150
4178
|
grid-template-columns:1fr auto;
|
|
4179
|
+
gap:var(--size-xs);
|
|
4151
4180
|
margin-top:var(--size-xs);
|
|
4152
4181
|
color:var(--color-text-medium);
|
|
4153
4182
|
}
|
|
@@ -4330,15 +4359,6 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4330
4359
|
object-fit:contain;
|
|
4331
4360
|
object-position:left;
|
|
4332
4361
|
}
|
|
4333
|
-
.mobius-skeleton{
|
|
4334
|
-
flex:1;
|
|
4335
|
-
width:calc(100vw - 66px);
|
|
4336
|
-
}
|
|
4337
|
-
@media (min-width: 850px){
|
|
4338
|
-
.mobius-skeleton{
|
|
4339
|
-
width:290px;
|
|
4340
|
-
}
|
|
4341
|
-
}
|
|
4342
4362
|
.no-quotes-referral__container{
|
|
4343
4363
|
display:grid;
|
|
4344
4364
|
grid-template-columns:1fr;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.5",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@simplybusiness/mobius": "^5.3.0",
|
|
30
30
|
"@simplybusiness/mobius-datepicker": "^6.0.6",
|
|
31
|
-
"@simplybusiness/mobius-journey": "^6.
|
|
31
|
+
"@simplybusiness/mobius-journey": "^6.8.1",
|
|
32
32
|
"@simplybusiness/theme-core": "^7.1.4"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|