@simplybusiness/theme-simplybusiness 2.11.5 → 2.11.6
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 +39 -6
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 2.11.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3d73c92: Create ShowcasePriceBlock to display price of Indicative Price on the Showcase page
|
|
8
|
+
- Updated dependencies [3d73c92]
|
|
9
|
+
- @simplybusiness/mobius-journey@11.24.2
|
|
10
|
+
|
|
3
11
|
## 2.11.5
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -6579,6 +6579,35 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6579
6579
|
.mobius-disclaimers__legal-text{
|
|
6580
6580
|
color:var(--color-neutral-500);
|
|
6581
6581
|
}
|
|
6582
|
+
.mobius-showcase__pricing{
|
|
6583
|
+
margin:var(--size-md) 0;
|
|
6584
|
+
}
|
|
6585
|
+
.mobius-showcase__individual-prices{
|
|
6586
|
+
display:flex;
|
|
6587
|
+
flex-direction:column;
|
|
6588
|
+
gap:var(--size-xs);
|
|
6589
|
+
}
|
|
6590
|
+
@media screen and (min-width: 641px){
|
|
6591
|
+
.mobius-showcase__individual-prices{
|
|
6592
|
+
padding-left:var(--size-sm);
|
|
6593
|
+
border-left:1px solid var(--color-neutral-300);
|
|
6594
|
+
}
|
|
6595
|
+
}
|
|
6596
|
+
.mobius-showcase__price{
|
|
6597
|
+
margin:0;
|
|
6598
|
+
color:var(--color-text-medium);
|
|
6599
|
+
font-size:var(--font-size-2);
|
|
6600
|
+
line-height:1.333;
|
|
6601
|
+
}
|
|
6602
|
+
.mobius-showcase__price sup{
|
|
6603
|
+
margin-left:2px;
|
|
6604
|
+
}
|
|
6605
|
+
.mobius-showcase__pricing .mobius-price-block__price{
|
|
6606
|
+
padding-right:var(--size-sm);
|
|
6607
|
+
}
|
|
6608
|
+
.mobius-showcase__pricing .mobius-price-block__value{
|
|
6609
|
+
line-height:normal;
|
|
6610
|
+
}
|
|
6582
6611
|
.mobius-showcase__layout{
|
|
6583
6612
|
flex-direction:column;
|
|
6584
6613
|
width:100%;
|
|
@@ -6619,6 +6648,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6619
6648
|
.mobius-showcase__card{
|
|
6620
6649
|
display:flex;
|
|
6621
6650
|
flex-direction:column;
|
|
6651
|
+
justify-content:space-between;
|
|
6622
6652
|
gap:var(--size-lg);
|
|
6623
6653
|
margin:var(--size-lg) 0;
|
|
6624
6654
|
flex:2.5;
|
|
@@ -6643,7 +6673,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6643
6673
|
@media screen and (min-width: 641px){
|
|
6644
6674
|
.mobius-showcase__content{
|
|
6645
6675
|
order:unset;
|
|
6646
|
-
padding:var(--size-lg) var(--size-md);
|
|
6676
|
+
padding:var(--size-lg) 0 var(--size-lg) var(--size-md);
|
|
6647
6677
|
}
|
|
6648
6678
|
}
|
|
6649
6679
|
.mobius-showcase__heading{
|
|
@@ -7210,7 +7240,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
7210
7240
|
}
|
|
7211
7241
|
.mobius-price-block{
|
|
7212
7242
|
position:relative;
|
|
7213
|
-
padding-
|
|
7243
|
+
padding:0 var(--size-sm);
|
|
7214
7244
|
}
|
|
7215
7245
|
.mobius-price-block::before{
|
|
7216
7246
|
content:"";
|
|
@@ -7224,19 +7254,22 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
7224
7254
|
}
|
|
7225
7255
|
.mobius-price-block__price{
|
|
7226
7256
|
display:flex;
|
|
7257
|
+
flex-direction:column;
|
|
7258
|
+
justify-content:space-between;
|
|
7227
7259
|
align-items:baseline;
|
|
7228
7260
|
gap:6px;
|
|
7229
7261
|
}
|
|
7230
7262
|
.mobius-price-block__prefix,
|
|
7231
7263
|
.mobius-price-block__suffix{
|
|
7232
|
-
font-size:
|
|
7233
|
-
color
|
|
7264
|
+
font-size:var(--font-size-2);
|
|
7265
|
+
color:var(--color-text-medium);
|
|
7266
|
+
margin:0;
|
|
7234
7267
|
}
|
|
7235
7268
|
.mobius-price-block__value{
|
|
7236
7269
|
margin:0;
|
|
7237
|
-
font-size:
|
|
7270
|
+
font-size:var(--font-size-6);
|
|
7238
7271
|
font-weight:600;
|
|
7239
|
-
color
|
|
7272
|
+
color:var(--color-text);
|
|
7240
7273
|
}
|
|
7241
7274
|
.mobius-date-picker__container{
|
|
7242
7275
|
position:relative;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.6",
|
|
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.24.
|
|
35
|
+
"@simplybusiness/mobius-journey": "^11.24.2",
|
|
36
36
|
"@simplybusiness/theme-core": "^7.14.9"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|