@simplybusiness/theme-simplybusiness 2.0.10 → 2.0.12
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 +33 -0
- package/dist/index.css +62 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 2.0.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [f40bcec]
|
|
8
|
+
- Updated dependencies [c8e9306]
|
|
9
|
+
- Updated dependencies [dc6b054]
|
|
10
|
+
- Updated dependencies [dc2e49f]
|
|
11
|
+
- Updated dependencies [092c680]
|
|
12
|
+
- Updated dependencies [f994dea]
|
|
13
|
+
- @simplybusiness/mobius@6.1.2
|
|
14
|
+
- @simplybusiness/mobius-journey@10.6.0
|
|
15
|
+
- @simplybusiness/mobius-chatbot@2.0.4
|
|
16
|
+
- @simplybusiness/mobius-datepicker@7.1.2
|
|
17
|
+
- @simplybusiness/mobius-interventions@2.5.1
|
|
18
|
+
- @simplybusiness/theme-core@7.11.2
|
|
19
|
+
|
|
20
|
+
## 2.0.11
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [1f192c7]
|
|
25
|
+
- Updated dependencies [2cbaa91]
|
|
26
|
+
- Updated dependencies [19cda13]
|
|
27
|
+
- Updated dependencies [df39bf7]
|
|
28
|
+
- Updated dependencies [01bc45e]
|
|
29
|
+
- Updated dependencies [48183d3]
|
|
30
|
+
- Updated dependencies [7725ddb]
|
|
31
|
+
- Updated dependencies [b54a6c1]
|
|
32
|
+
- @simplybusiness/mobius-journey@10.5.0
|
|
33
|
+
- @simplybusiness/mobius-interventions@2.5.0
|
|
34
|
+
- @simplybusiness/mobius-chatbot@2.0.3
|
|
35
|
+
|
|
3
36
|
## 2.0.10
|
|
4
37
|
|
|
5
38
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -6979,6 +6979,68 @@ input[type="date"]::-webkit-datetime-edit-year-field{
|
|
|
6979
6979
|
min-width:238px;
|
|
6980
6980
|
}
|
|
6981
6981
|
}
|
|
6982
|
+
.live-chat__text{
|
|
6983
|
+
display:grid;
|
|
6984
|
+
grid-template-columns:auto 1fr;
|
|
6985
|
+
align-items:center;
|
|
6986
|
+
color:var(--color-secondary);
|
|
6987
|
+
}
|
|
6988
|
+
.live-chat .sticky__content{
|
|
6989
|
+
grid-template-columns:auto 1fr auto;
|
|
6990
|
+
}
|
|
6991
|
+
.live-chat button{
|
|
6992
|
+
--button-content-color:var(--color-text-inverted);
|
|
6993
|
+
|
|
6994
|
+
background:var(--button-secondary-hover-color);
|
|
6995
|
+
border-color:var(--button-secondary-hover-color);
|
|
6996
|
+
border-radius:19px;
|
|
6997
|
+
}
|
|
6998
|
+
.live-chat button:hover{
|
|
6999
|
+
--button-content-color:var(--button-secondary-hover-color);
|
|
7000
|
+
|
|
7001
|
+
background:var(--color-text-inverted);
|
|
7002
|
+
border-color:var(--button-secondary-color);
|
|
7003
|
+
}
|
|
7004
|
+
@media (max-width: 768px){
|
|
7005
|
+
.sticky__footer{
|
|
7006
|
+
grid-template-columns:1fr;
|
|
7007
|
+
align-items:flex-start;
|
|
7008
|
+
}
|
|
7009
|
+
|
|
7010
|
+
.live-chat .sticky__content{
|
|
7011
|
+
grid-template-columns:1fr;
|
|
7012
|
+
gap:var(--size-xs);
|
|
7013
|
+
align-items:flex-start;
|
|
7014
|
+
}
|
|
7015
|
+
|
|
7016
|
+
.live-chat__text{
|
|
7017
|
+
grid-template-columns:1fr;
|
|
7018
|
+
gap:var(--size-xs);
|
|
7019
|
+
align-items:flex-start;
|
|
7020
|
+
}
|
|
7021
|
+
|
|
7022
|
+
.live-chat__images{
|
|
7023
|
+
grid-auto-flow:row;
|
|
7024
|
+
gap:var(--size-xs);
|
|
7025
|
+
}
|
|
7026
|
+
|
|
7027
|
+
.live-chat__image{
|
|
7028
|
+
max-height:var(--size-lg);
|
|
7029
|
+
width:auto;
|
|
7030
|
+
}
|
|
7031
|
+
|
|
7032
|
+
.live-chat__text-container{
|
|
7033
|
+
display:grid;
|
|
7034
|
+
grid-template-columns:1fr auto;
|
|
7035
|
+
align-items:center;
|
|
7036
|
+
width:100%;
|
|
7037
|
+
}
|
|
7038
|
+
|
|
7039
|
+
.live-chat__image{
|
|
7040
|
+
max-height:var(--size-lg);
|
|
7041
|
+
max-width:110px;
|
|
7042
|
+
}
|
|
7043
|
+
}
|
|
6982
7044
|
.reassurance__text{
|
|
6983
7045
|
display:grid;
|
|
6984
7046
|
grid-template-columns:auto 1fr;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.12",
|
|
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": "^6.1.
|
|
30
|
-
"@simplybusiness/mobius-chatbot": "^2.0.
|
|
31
|
-
"@simplybusiness/mobius-datepicker": "^7.1.
|
|
32
|
-
"@simplybusiness/mobius-interventions": "^2.
|
|
33
|
-
"@simplybusiness/mobius-journey": "^10.
|
|
34
|
-
"@simplybusiness/theme-core": "^7.11.
|
|
29
|
+
"@simplybusiness/mobius": "^6.1.2",
|
|
30
|
+
"@simplybusiness/mobius-chatbot": "^2.0.4",
|
|
31
|
+
"@simplybusiness/mobius-datepicker": "^7.1.2",
|
|
32
|
+
"@simplybusiness/mobius-interventions": "^2.5.1",
|
|
33
|
+
"@simplybusiness/mobius-journey": "^10.6.0",
|
|
34
|
+
"@simplybusiness/theme-core": "^7.11.2"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"build-scripts": "^1.0.1",
|