@simplybusiness/theme-core 7.3.0 → 7.3.1
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 +9 -0
- package/dist/index.css +20 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 7.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 74b3c30: Move PersistentCartPaymentOptions from journey-components to mobius
|
|
8
|
+
- Updated dependencies [a54330c]
|
|
9
|
+
- Updated dependencies [74b3c30]
|
|
10
|
+
- @simplybusiness/mobius@5.18.0
|
|
11
|
+
|
|
3
12
|
## 7.3.0
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
package/dist/index.css
CHANGED
|
@@ -718,8 +718,18 @@ a.mobius-button:focus-visible,
|
|
|
718
718
|
height:var(--drawer-height);
|
|
719
719
|
max-height:var(--drawer-height);
|
|
720
720
|
transition:transform var(--drawer-transition-duration) ease-in-out;
|
|
721
|
+
padding-bottom:80px;
|
|
721
722
|
}
|
|
722
723
|
|
|
724
|
+
@supports (height: 100dvh){
|
|
725
|
+
|
|
726
|
+
.mobius-drawer.--top,.mobius-drawer.--bottom{
|
|
727
|
+
height:100dvh;
|
|
728
|
+
max-height:100dvh;
|
|
729
|
+
padding-bottom:0;
|
|
730
|
+
}
|
|
731
|
+
}
|
|
732
|
+
|
|
723
733
|
.mobius-drawer.--left,.mobius-drawer.--right{
|
|
724
734
|
bottom:0;
|
|
725
735
|
width:100%;
|
|
@@ -727,6 +737,16 @@ a.mobius-button:focus-visible,
|
|
|
727
737
|
height:100vh;
|
|
728
738
|
max-height:100vh;
|
|
729
739
|
transition:transform var(--drawer-transition-duration) ease-in-out;
|
|
740
|
+
padding-bottom:80px;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
@supports (height: 100dvh){
|
|
744
|
+
|
|
745
|
+
.mobius-drawer.--left,.mobius-drawer.--right{
|
|
746
|
+
height:100dvh;
|
|
747
|
+
max-height:100dvh;
|
|
748
|
+
padding-bottom:0;
|
|
749
|
+
}
|
|
730
750
|
}
|
|
731
751
|
|
|
732
752
|
.mobius-drawer:not(.--should-transition){
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-core",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.1",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"./fonts": "./dist/fonts.css"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@simplybusiness/mobius": "^5.
|
|
29
|
+
"@simplybusiness/mobius": "^5.18.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"css-loader": "^7.1.2",
|