@simplybusiness/theme-simplybusiness 1.23.3 → 1.24.0
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 +37 -0
- package/dist/index.css +0 -128
- package/package.json +7 -7
- package/src/index.css +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 1.24.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 5065ec5: Remove sticky footer component as it is no longer needed
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [dc64836]
|
|
12
|
+
- Updated dependencies [49d83c2]
|
|
13
|
+
- Updated dependencies [4ce860b]
|
|
14
|
+
- Updated dependencies [5fd774a]
|
|
15
|
+
- Updated dependencies [845388a]
|
|
16
|
+
- Updated dependencies [39b6975]
|
|
17
|
+
- Updated dependencies [5065ec5]
|
|
18
|
+
- Updated dependencies [3198a2a]
|
|
19
|
+
- Updated dependencies [03010bf]
|
|
20
|
+
- @simplybusiness/mobius-journey@8.40.0
|
|
21
|
+
- @simplybusiness/mobius@5.29.5
|
|
22
|
+
- @simplybusiness/mobius-interventions@1.70.3
|
|
23
|
+
- @simplybusiness/mobius-chatbot@1.4.15
|
|
24
|
+
- @simplybusiness/mobius-datepicker@6.7.2
|
|
25
|
+
- @simplybusiness/theme-core@7.8.5
|
|
26
|
+
|
|
27
|
+
## 1.23.4
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Updated dependencies [7ad7646]
|
|
32
|
+
- Updated dependencies [11c612a]
|
|
33
|
+
- @simplybusiness/mobius@5.29.4
|
|
34
|
+
- @simplybusiness/mobius-interventions@1.70.2
|
|
35
|
+
- @simplybusiness/mobius-chatbot@1.4.14
|
|
36
|
+
- @simplybusiness/mobius-datepicker@6.7.1
|
|
37
|
+
- @simplybusiness/mobius-journey@8.39.1
|
|
38
|
+
- @simplybusiness/theme-core@7.8.4
|
|
39
|
+
|
|
3
40
|
## 1.23.3
|
|
4
41
|
|
|
5
42
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -2991,101 +2991,6 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
2991
2991
|
.mobius-footer-ctm__content a.mobius-link{
|
|
2992
2992
|
color:var(--color-focus);
|
|
2993
2993
|
}
|
|
2994
|
-
.mobius-sticky-footer{
|
|
2995
|
-
box-sizing:border-box;
|
|
2996
|
-
position:fixed;
|
|
2997
|
-
bottom:0;
|
|
2998
|
-
width:100%;
|
|
2999
|
-
box-shadow:0 -2px 5px rgba(0, 0, 0, 0.1);
|
|
3000
|
-
padding:20px 0;
|
|
3001
|
-
background-color:var(--color-background-highlight);
|
|
3002
|
-
display:grid;
|
|
3003
|
-
grid-auto-flow:column;
|
|
3004
|
-
justify-content:center;
|
|
3005
|
-
align-items:center;
|
|
3006
|
-
gap:var(--size-sm);
|
|
3007
|
-
transform:translateY(0);
|
|
3008
|
-
transition:transform 0.5s ease-out;
|
|
3009
|
-
z-index:50;
|
|
3010
|
-
}
|
|
3011
|
-
.mobius-sticky-footer--hidden{
|
|
3012
|
-
pointer-events:none;
|
|
3013
|
-
transform:translateY(100%);
|
|
3014
|
-
}
|
|
3015
|
-
.mobius-sticky-footer__content{
|
|
3016
|
-
display:flex;
|
|
3017
|
-
color:var(--color-azure-600);
|
|
3018
|
-
gap:var(--size-xs);
|
|
3019
|
-
}
|
|
3020
|
-
.mobius-sticky-footer__content > .mobius-text{
|
|
3021
|
-
margin:0;
|
|
3022
|
-
}
|
|
3023
|
-
.mobius-sticky-footer__content .mobile-text{
|
|
3024
|
-
display:none;
|
|
3025
|
-
}
|
|
3026
|
-
.mobius-sticky-footer__button{
|
|
3027
|
-
border-radius:100px;
|
|
3028
|
-
display:grid;
|
|
3029
|
-
grid-auto-flow:column;
|
|
3030
|
-
align-items:center;
|
|
3031
|
-
gap:var(--size-xs);
|
|
3032
|
-
font-weight:var(--font-weight-normal);
|
|
3033
|
-
background-color:#fff;
|
|
3034
|
-
color:var(--color-azure-500);
|
|
3035
|
-
font-weight:var(--font-weight-bold);
|
|
3036
|
-
border:1px solid var(--color-azure-500);
|
|
3037
|
-
font-size:var(--font-size-3);
|
|
3038
|
-
}
|
|
3039
|
-
.mobius-sticky-footer__button:hover{
|
|
3040
|
-
background-color:var(--color-primary-hover);
|
|
3041
|
-
border-color:var(--color-primary-hover);
|
|
3042
|
-
color:#fff;
|
|
3043
|
-
}
|
|
3044
|
-
.mobius-sticky-footer__button > svg{
|
|
3045
|
-
height:var(--size-md);
|
|
3046
|
-
width:var(--size-md);
|
|
3047
|
-
}
|
|
3048
|
-
.mobius-sticky-footer__explain{
|
|
3049
|
-
color:var(--color-primary);
|
|
3050
|
-
font-weight:var(--font-weight-normal);
|
|
3051
|
-
text-align:center;
|
|
3052
|
-
font-size:var(--font-size-2);
|
|
3053
|
-
line-height:var(--line-height-normal);
|
|
3054
|
-
}
|
|
3055
|
-
.mobius-sticky-footer__explain-headline{
|
|
3056
|
-
font-size:var(--font-size-3);
|
|
3057
|
-
line-height:var(--line-height-normal);
|
|
3058
|
-
display:block;
|
|
3059
|
-
}
|
|
3060
|
-
@media (max-width: 600px){
|
|
3061
|
-
.mobius-sticky-footer{
|
|
3062
|
-
padding:16px;
|
|
3063
|
-
justify-content:space-between;
|
|
3064
|
-
grid-template-columns:repeat(2, max-content);
|
|
3065
|
-
}
|
|
3066
|
-
|
|
3067
|
-
.mobius-sticky-footer__content > .mobius-text{
|
|
3068
|
-
font-size:var(--font-size-3);
|
|
3069
|
-
line-height:var(--line-height-normal);
|
|
3070
|
-
}
|
|
3071
|
-
|
|
3072
|
-
.mobius-sticky-footer__content .mobile-text{
|
|
3073
|
-
display:block;
|
|
3074
|
-
}
|
|
3075
|
-
|
|
3076
|
-
.mobius-sticky-footer__content .desktop-text{
|
|
3077
|
-
display:none;
|
|
3078
|
-
}
|
|
3079
|
-
|
|
3080
|
-
.mobius-sticky-footer__explain{
|
|
3081
|
-
text-align:left;
|
|
3082
|
-
}
|
|
3083
|
-
|
|
3084
|
-
.mobius-sticky-footer__explain-headline{
|
|
3085
|
-
font-size:var(--font-size-2);
|
|
3086
|
-
line-height:var(--line-height-normal);
|
|
3087
|
-
}
|
|
3088
|
-
}
|
|
3089
2994
|
.mobius-header{
|
|
3090
2995
|
border-bottom:var(--size-border-width) solid var(--header-border-color);
|
|
3091
2996
|
}
|
|
@@ -6511,39 +6416,6 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6511
6416
|
display:none;
|
|
6512
6417
|
}
|
|
6513
6418
|
}
|
|
6514
|
-
.mobius-interventions__inpage-indicative-price-container{
|
|
6515
|
-
padding-top:16px;
|
|
6516
|
-
}
|
|
6517
|
-
.mobius-interventions__inpage-indicative-price-box{
|
|
6518
|
-
background-color:rgba(70, 50, 216, .05);
|
|
6519
|
-
border-radius:5px;
|
|
6520
|
-
padding:0px 16px 0px 16px;
|
|
6521
|
-
}
|
|
6522
|
-
.mobius-interventions__inpage-indicative-price-text{
|
|
6523
|
-
padding-top:8px;
|
|
6524
|
-
font-size:16px;
|
|
6525
|
-
font-weight:400;
|
|
6526
|
-
}
|
|
6527
|
-
.mobius-interventions__inpage-indicative-price-amount{
|
|
6528
|
-
font-size:32px;
|
|
6529
|
-
font-weight:600;
|
|
6530
|
-
line-height:24px;
|
|
6531
|
-
color:#4632D8;
|
|
6532
|
-
margin:0;
|
|
6533
|
-
}
|
|
6534
|
-
.mobius-interventions__inpage-indicative-price-amount-text{
|
|
6535
|
-
font-size:22px;
|
|
6536
|
-
font-weight:600;
|
|
6537
|
-
line-height:24px;
|
|
6538
|
-
color:#4632D8;
|
|
6539
|
-
margin:0;
|
|
6540
|
-
}
|
|
6541
|
-
.mobius-interventions__inpage-indicative-price-footer-text{
|
|
6542
|
-
color:#5d5d60;
|
|
6543
|
-
padding-top:12px;
|
|
6544
|
-
margin-bottom:0px;
|
|
6545
|
-
font-size:10px;
|
|
6546
|
-
}
|
|
6547
6419
|
.qcp-inactivity-intervention__qcp-intervention-modal{
|
|
6548
6420
|
display:grid;
|
|
6549
6421
|
grid-template-columns:auto auto;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.24.0",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
"./fonts": "./dist/fonts.css"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@simplybusiness/mobius": "^5.29.
|
|
30
|
-
"@simplybusiness/mobius-chatbot": "^1.4.
|
|
31
|
-
"@simplybusiness/mobius-datepicker": "^6.7.
|
|
32
|
-
"@simplybusiness/mobius-interventions": "^1.70.
|
|
33
|
-
"@simplybusiness/mobius-journey": "^8.
|
|
34
|
-
"@simplybusiness/theme-core": "^7.8.
|
|
29
|
+
"@simplybusiness/mobius": "^5.29.5",
|
|
30
|
+
"@simplybusiness/mobius-chatbot": "^1.4.15",
|
|
31
|
+
"@simplybusiness/mobius-datepicker": "^6.7.2",
|
|
32
|
+
"@simplybusiness/mobius-interventions": "^1.70.3",
|
|
33
|
+
"@simplybusiness/mobius-journey": "^8.40.0",
|
|
34
|
+
"@simplybusiness/theme-core": "^7.8.5"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"css-loader": "^7.1.2",
|
package/src/index.css
CHANGED
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
@import "@simplybusiness/mobius-journey/src/components/Footer/Footer.css";
|
|
15
15
|
@import "@simplybusiness/mobius-journey/src/components/Footer/MoneySuperMarketFooter/Footer.css";
|
|
16
16
|
@import "@simplybusiness/mobius-journey/src/components/Footer/CompareTheMarketFooter/Footer.css";
|
|
17
|
-
@import "@simplybusiness/mobius-journey/src/components/Footer/StickyFooter.css";
|
|
18
17
|
@import "@simplybusiness/mobius-journey/src/components/Header/Header.css";
|
|
19
18
|
@import "@simplybusiness/mobius-journey/src/components/Headline/QuoteHeadline.css";
|
|
20
19
|
@import "@simplybusiness/mobius-journey/src/components/NextCoverage/NextCoverage.css";
|