@simplybusiness/theme-simplybusiness 0.5.3 → 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 +11 -0
- package/dist/index.css +18 -10
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
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
|
+
|
|
3
14
|
## 0.5.3
|
|
4
15
|
|
|
5
16
|
### 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);
|
|
@@ -3838,6 +3848,12 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3838
3848
|
:is(.--is-horizontal .mobius-quote-card__coverage) .mobius-grid__item{
|
|
3839
3849
|
line-height:var(--line-height-normal);
|
|
3840
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
|
+
}
|
|
3841
3857
|
.mobius-quote-card__coverage-title.mobius-text{
|
|
3842
3858
|
margin:0 0 16px 0;
|
|
3843
3859
|
text-transform:uppercase;
|
|
@@ -4148,6 +4164,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4148
4164
|
.mobius-quote-card__instalments-grid{
|
|
4149
4165
|
display:grid;
|
|
4150
4166
|
grid-template-columns:1fr auto;
|
|
4167
|
+
gap:var(--size-xs);
|
|
4151
4168
|
margin-top:var(--size-xs);
|
|
4152
4169
|
color:var(--color-text-medium);
|
|
4153
4170
|
}
|
|
@@ -4330,15 +4347,6 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4330
4347
|
object-fit:contain;
|
|
4331
4348
|
object-position:left;
|
|
4332
4349
|
}
|
|
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
4350
|
.no-quotes-referral__container{
|
|
4343
4351
|
display:grid;
|
|
4344
4352
|
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.4",
|
|
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.0",
|
|
32
32
|
"@simplybusiness/theme-core": "^7.1.4"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|