groundfloor-react-ui 1.2.56 → 1.2.57
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/dist/index.es.js +2 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -2892,6 +2892,7 @@ position: relative;
|
|
|
2892
2892
|
display: flex;
|
|
2893
2893
|
flex-direction: column;
|
|
2894
2894
|
height: ${({toggleSideBarOpen:e})=>"100vh"};
|
|
2895
|
+
/* min-height: '-webkit-fill-available'; */
|
|
2895
2896
|
|
|
2896
2897
|
@media (max-width: 428px) {
|
|
2897
2898
|
height: ${({toggleSideBarOpen:e})=>e?"100vh":"56px"};
|
|
@@ -2925,7 +2926,7 @@ position: relative;
|
|
|
2925
2926
|
flex-direction: column;
|
|
2926
2927
|
background-color: transparent;
|
|
2927
2928
|
width: 100%;
|
|
2928
|
-
height: calc(
|
|
2929
|
+
height: calc(100% - 56px);
|
|
2929
2930
|
|
|
2930
2931
|
.service-layer:last-of-type {
|
|
2931
2932
|
margin-top: auto;
|
package/dist/index.js
CHANGED
|
@@ -2892,6 +2892,7 @@ position: relative;
|
|
|
2892
2892
|
display: flex;
|
|
2893
2893
|
flex-direction: column;
|
|
2894
2894
|
height: ${({toggleSideBarOpen:e})=>"100vh"};
|
|
2895
|
+
/* min-height: '-webkit-fill-available'; */
|
|
2895
2896
|
|
|
2896
2897
|
@media (max-width: 428px) {
|
|
2897
2898
|
height: ${({toggleSideBarOpen:e})=>e?"100vh":"56px"};
|
|
@@ -2925,7 +2926,7 @@ position: relative;
|
|
|
2925
2926
|
flex-direction: column;
|
|
2926
2927
|
background-color: transparent;
|
|
2927
2928
|
width: 100%;
|
|
2928
|
-
height: calc(
|
|
2929
|
+
height: calc(100% - 56px);
|
|
2929
2930
|
|
|
2930
2931
|
.service-layer:last-of-type {
|
|
2931
2932
|
margin-top: auto;
|