@simplybusiness/theme-simplybusiness 1.19.13 → 1.19.14
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 +15 -0
- package/dist/index.css +252 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 1.19.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [535409f]
|
|
8
|
+
- Updated dependencies [6c367e9]
|
|
9
|
+
- Updated dependencies [4ef5f93]
|
|
10
|
+
- Updated dependencies [cfae116]
|
|
11
|
+
- @simplybusiness/mobius-journey@8.21.0
|
|
12
|
+
- @simplybusiness/mobius@5.27.2
|
|
13
|
+
- @simplybusiness/mobius-interventions@1.48.0
|
|
14
|
+
- @simplybusiness/mobius-chatbot@1.3.1
|
|
15
|
+
- @simplybusiness/mobius-datepicker@6.5.17
|
|
16
|
+
- @simplybusiness/theme-core@7.6.12
|
|
17
|
+
|
|
3
18
|
## 1.19.13
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -6759,6 +6759,258 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6759
6759
|
width:100%;
|
|
6760
6760
|
}
|
|
6761
6761
|
}
|
|
6762
|
+
.reassurance__footer{
|
|
6763
|
+
box-sizing:border-box;
|
|
6764
|
+
position:fixed;
|
|
6765
|
+
bottom:0;
|
|
6766
|
+
width:100%;
|
|
6767
|
+
background-color:var(--color-background-highlight);
|
|
6768
|
+
box-shadow:0 -2px 5px rgba(0, 0, 0, 0.1);
|
|
6769
|
+
padding:var(--size-sm);
|
|
6770
|
+
display:grid;
|
|
6771
|
+
grid-template-columns:1fr auto;
|
|
6772
|
+
align-items:center;
|
|
6773
|
+
z-index:1000;
|
|
6774
|
+
transition:opacity 0.5s ease, transform 0.5s ease;
|
|
6775
|
+
left:0;
|
|
6776
|
+
}
|
|
6777
|
+
.reassurance__footer--hidden{
|
|
6778
|
+
opacity:0;
|
|
6779
|
+
transform:translateY(100%);
|
|
6780
|
+
pointer-events:none;
|
|
6781
|
+
}
|
|
6782
|
+
.reassurance__content{
|
|
6783
|
+
display:grid;
|
|
6784
|
+
grid-template-columns:1fr auto;
|
|
6785
|
+
align-items:center;
|
|
6786
|
+
width:100%;
|
|
6787
|
+
max-width:1000px;
|
|
6788
|
+
margin:0 auto;
|
|
6789
|
+
gap:var(--size-sm);
|
|
6790
|
+
}
|
|
6791
|
+
.reassurance__text{
|
|
6792
|
+
display:grid;
|
|
6793
|
+
grid-template-columns:auto 1fr;
|
|
6794
|
+
align-items:center;
|
|
6795
|
+
gap:var(--size-sm);
|
|
6796
|
+
}
|
|
6797
|
+
.reassurance__text-icon{
|
|
6798
|
+
color:var(--color-accent);
|
|
6799
|
+
}
|
|
6800
|
+
.reassurance__headline{
|
|
6801
|
+
font-weight:bold;
|
|
6802
|
+
display:inline;
|
|
6803
|
+
margin-right:5px;
|
|
6804
|
+
}
|
|
6805
|
+
.reassurance__description{
|
|
6806
|
+
display:inline;
|
|
6807
|
+
}
|
|
6808
|
+
.reassurance__images{
|
|
6809
|
+
display:grid;
|
|
6810
|
+
grid-template-columns:auto 1fr;
|
|
6811
|
+
gap:var(--size-sm);
|
|
6812
|
+
}
|
|
6813
|
+
.reassurance__image{
|
|
6814
|
+
max-height:50px;
|
|
6815
|
+
width:auto;
|
|
6816
|
+
}
|
|
6817
|
+
.reassurance__button--close{
|
|
6818
|
+
background:none;
|
|
6819
|
+
border:none;
|
|
6820
|
+
cursor:pointer;
|
|
6821
|
+
color:var(--color-secondary);
|
|
6822
|
+
display:flex;
|
|
6823
|
+
align-items:center;
|
|
6824
|
+
gap:var(--size-xxs);
|
|
6825
|
+
}
|
|
6826
|
+
.reassurance__button-text{
|
|
6827
|
+
-webkit-text-decoration:underline;
|
|
6828
|
+
text-decoration:underline;
|
|
6829
|
+
}
|
|
6830
|
+
.reassurance__text div{
|
|
6831
|
+
gap:var(--size-xs);
|
|
6832
|
+
}
|
|
6833
|
+
.mobius-reassurance-button.reassurance__button--desktop{
|
|
6834
|
+
min-width:238px;
|
|
6835
|
+
text-align:center;
|
|
6836
|
+
}
|
|
6837
|
+
.mobius-reassurance-button.reassurance__button--mobile{
|
|
6838
|
+
display:none;
|
|
6839
|
+
}
|
|
6840
|
+
.reassurance__content-desktop-container{
|
|
6841
|
+
display:grid;
|
|
6842
|
+
grid-template-columns:auto 1fr;
|
|
6843
|
+
align-items:center;
|
|
6844
|
+
width:100%;
|
|
6845
|
+
max-width:1000px;
|
|
6846
|
+
margin:0 auto;
|
|
6847
|
+
}
|
|
6848
|
+
.reassurance__terms-and-conditions{
|
|
6849
|
+
margin:0;
|
|
6850
|
+
font-size:var(--font-size-1);
|
|
6851
|
+
}
|
|
6852
|
+
@media (max-width: 768px){
|
|
6853
|
+
.reassurance__footer{
|
|
6854
|
+
padding:var(--size-sm);
|
|
6855
|
+
}
|
|
6856
|
+
|
|
6857
|
+
.reassurance__headline{
|
|
6858
|
+
font-weight:bold;
|
|
6859
|
+
display:inline-block;
|
|
6860
|
+
margin:0 5px 0 0;
|
|
6861
|
+
clear:both;
|
|
6862
|
+
width:100%;
|
|
6863
|
+
}
|
|
6864
|
+
|
|
6865
|
+
.reassurance__content{
|
|
6866
|
+
grid-template-columns:auto;
|
|
6867
|
+
}
|
|
6868
|
+
|
|
6869
|
+
.mobius-reassurance-button.reassurance__button{
|
|
6870
|
+
width:100%;
|
|
6871
|
+
}
|
|
6872
|
+
}
|
|
6873
|
+
@media (max-width: 320px){
|
|
6874
|
+
|
|
6875
|
+
.reassurance__footer{
|
|
6876
|
+
padding:var(--size-xs);
|
|
6877
|
+
grid-template-columns:auto;
|
|
6878
|
+
}
|
|
6879
|
+
|
|
6880
|
+
.reassurance__content{
|
|
6881
|
+
grid-template-columns:auto;
|
|
6882
|
+
}
|
|
6883
|
+
|
|
6884
|
+
.mobius-reassurance-button.reassurance__button{
|
|
6885
|
+
width:100%;
|
|
6886
|
+
}
|
|
6887
|
+
}
|
|
6888
|
+
.trade-social-proofing__footer{
|
|
6889
|
+
box-sizing:border-box;
|
|
6890
|
+
position:fixed;
|
|
6891
|
+
bottom:0;
|
|
6892
|
+
width:100%;
|
|
6893
|
+
background-color:var(--color-background-highlight);
|
|
6894
|
+
box-shadow:0 -2px 5px rgba(0, 0, 0, 0.1);
|
|
6895
|
+
padding:var(--size-sm);
|
|
6896
|
+
display:grid;
|
|
6897
|
+
grid-template-columns:1fr auto;
|
|
6898
|
+
align-items:center;
|
|
6899
|
+
z-index:1000;
|
|
6900
|
+
transition:opacity 0.5s ease, transform 0.5s ease;
|
|
6901
|
+
left:0;
|
|
6902
|
+
}
|
|
6903
|
+
.trade-social-proofing__footer--hidden{
|
|
6904
|
+
opacity:0;
|
|
6905
|
+
transform:translateY(100%);
|
|
6906
|
+
pointer-events:none;
|
|
6907
|
+
}
|
|
6908
|
+
.trade-social-proofing__content{
|
|
6909
|
+
display:grid;
|
|
6910
|
+
grid-template-columns:1fr auto;
|
|
6911
|
+
align-items:center;
|
|
6912
|
+
width:100%;
|
|
6913
|
+
max-width:1000px;
|
|
6914
|
+
margin:0 auto;
|
|
6915
|
+
gap:var(--size-sm);
|
|
6916
|
+
}
|
|
6917
|
+
.trade-social-proofing__text{
|
|
6918
|
+
display:grid;
|
|
6919
|
+
grid-template-columns:auto 1fr;
|
|
6920
|
+
align-items:center;
|
|
6921
|
+
gap:var(--size-sm)
|
|
6922
|
+
}
|
|
6923
|
+
.trade-social-proofing__text-icon{
|
|
6924
|
+
color:var(--color-accent);
|
|
6925
|
+
}
|
|
6926
|
+
.trade-social-proofing__headline{
|
|
6927
|
+
font-weight:bold;
|
|
6928
|
+
display:inline;
|
|
6929
|
+
margin-right:5px;
|
|
6930
|
+
}
|
|
6931
|
+
.trade-social-proofing__description{
|
|
6932
|
+
display:inline;
|
|
6933
|
+
}
|
|
6934
|
+
.trade-social-proofing__images{
|
|
6935
|
+
display:grid;
|
|
6936
|
+
grid-template-columns:auto 1fr;
|
|
6937
|
+
gap:var(--size-sm);
|
|
6938
|
+
}
|
|
6939
|
+
.trade-social-proofing__image{
|
|
6940
|
+
max-height:50px;
|
|
6941
|
+
width:auto;
|
|
6942
|
+
}
|
|
6943
|
+
.trade-social-proofing__button--close{
|
|
6944
|
+
background:none;
|
|
6945
|
+
border:none;
|
|
6946
|
+
cursor:pointer;
|
|
6947
|
+
color:var(--color-secondary);
|
|
6948
|
+
display:flex;
|
|
6949
|
+
align-items:center;
|
|
6950
|
+
gap:5px;
|
|
6951
|
+
}
|
|
6952
|
+
.trade-social-proofing__button-text{
|
|
6953
|
+
-webkit-text-decoration:underline;
|
|
6954
|
+
text-decoration:underline;
|
|
6955
|
+
}
|
|
6956
|
+
.trade-social-proofing__text div{
|
|
6957
|
+
gap:var(--size-xs);
|
|
6958
|
+
}
|
|
6959
|
+
.mobius-trade-social-proofing-button.trade-social-proofing__button--desktop{
|
|
6960
|
+
min-width:238px;
|
|
6961
|
+
text-align:center;
|
|
6962
|
+
}
|
|
6963
|
+
.mobius-trade-social-proofing-button.trade-social-proofing__button--mobile{
|
|
6964
|
+
display:none;
|
|
6965
|
+
}
|
|
6966
|
+
.trade-social-proofing__content-desktop-container{
|
|
6967
|
+
display:grid;
|
|
6968
|
+
grid-template-columns:auto 1fr;
|
|
6969
|
+
align-items:center;
|
|
6970
|
+
width:100%;
|
|
6971
|
+
max-width:1000px;
|
|
6972
|
+
margin:0 auto;
|
|
6973
|
+
}
|
|
6974
|
+
.trade-social-proofing__terms-and-conditions{
|
|
6975
|
+
margin:0;
|
|
6976
|
+
font-size:var(--font-size-1);
|
|
6977
|
+
}
|
|
6978
|
+
@media (max-width: 768px){
|
|
6979
|
+
.trade-social-proofing__footer{
|
|
6980
|
+
padding:var(--size-sm);
|
|
6981
|
+
}
|
|
6982
|
+
|
|
6983
|
+
.trade-social-proofing__headline{
|
|
6984
|
+
font-weight:bold;
|
|
6985
|
+
display:inline-block;
|
|
6986
|
+
margin:0 5px 0 0;
|
|
6987
|
+
clear:both;
|
|
6988
|
+
width:100%;
|
|
6989
|
+
}
|
|
6990
|
+
|
|
6991
|
+
.trade-social-proofing__content{
|
|
6992
|
+
grid-template-columns:auto;
|
|
6993
|
+
}
|
|
6994
|
+
|
|
6995
|
+
.mobius-trade-social-proofing-button.trade-social-proofing__button{
|
|
6996
|
+
width:100%;
|
|
6997
|
+
}
|
|
6998
|
+
}
|
|
6999
|
+
@media (max-width: 320px){
|
|
7000
|
+
|
|
7001
|
+
.trade-social-proofing__footer{
|
|
7002
|
+
padding:var(--size-xs);
|
|
7003
|
+
grid-template-columns:auto;
|
|
7004
|
+
}
|
|
7005
|
+
|
|
7006
|
+
.trade-social-proofing__content{
|
|
7007
|
+
grid-template-columns:auto;
|
|
7008
|
+
}
|
|
7009
|
+
|
|
7010
|
+
.mobius-trade-social-proofing-button.trade-social-proofing__button{
|
|
7011
|
+
width:100%;
|
|
7012
|
+
}
|
|
7013
|
+
}
|
|
6762
7014
|
.trust-banner__content{
|
|
6763
7015
|
margin:20px 0;
|
|
6764
7016
|
text-align:center;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.14",
|
|
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.27.
|
|
30
|
-
"@simplybusiness/mobius-chatbot": "^1.3.
|
|
31
|
-
"@simplybusiness/mobius-datepicker": "^6.5.
|
|
32
|
-
"@simplybusiness/mobius-interventions": "^1.
|
|
33
|
-
"@simplybusiness/mobius-journey": "^8.
|
|
34
|
-
"@simplybusiness/theme-core": "^7.6.
|
|
29
|
+
"@simplybusiness/mobius": "^5.27.2",
|
|
30
|
+
"@simplybusiness/mobius-chatbot": "^1.3.1",
|
|
31
|
+
"@simplybusiness/mobius-datepicker": "^6.5.17",
|
|
32
|
+
"@simplybusiness/mobius-interventions": "^1.48.0",
|
|
33
|
+
"@simplybusiness/mobius-journey": "^8.21.0",
|
|
34
|
+
"@simplybusiness/theme-core": "^7.6.12"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"css-loader": "^7.1.2",
|