@ecohouse/ui 0.1.30 → 0.1.31
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.cjs +9 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Sidebar/Sidebar.tsx +9 -1
package/dist/index.cjs
CHANGED
|
@@ -2773,7 +2773,10 @@ var Sidebar = react.forwardRef(function Sidebar2({
|
|
|
2773
2773
|
});
|
|
2774
2774
|
var styles9 = reactNative.StyleSheet.create({
|
|
2775
2775
|
root: {
|
|
2776
|
+
flexDirection: "column",
|
|
2777
|
+
alignSelf: "stretch",
|
|
2776
2778
|
height: "100%",
|
|
2779
|
+
minHeight: "100%",
|
|
2777
2780
|
flexShrink: 0,
|
|
2778
2781
|
backgroundColor: colors.dark,
|
|
2779
2782
|
borderRightWidth: 1,
|
|
@@ -2812,8 +2815,11 @@ var styles9 = reactNative.StyleSheet.create({
|
|
|
2812
2815
|
flexShrink: 0
|
|
2813
2816
|
},
|
|
2814
2817
|
nav: {
|
|
2815
|
-
|
|
2818
|
+
flexGrow: 1,
|
|
2819
|
+
flexShrink: 1,
|
|
2820
|
+
flexBasis: 0,
|
|
2816
2821
|
width: "100%",
|
|
2822
|
+
minHeight: 0,
|
|
2817
2823
|
padding: 16,
|
|
2818
2824
|
gap: 10
|
|
2819
2825
|
},
|
|
@@ -2846,7 +2852,9 @@ var styles9 = reactNative.StyleSheet.create({
|
|
|
2846
2852
|
footer: {
|
|
2847
2853
|
height: PROFILE_SECTION_HEIGHT,
|
|
2848
2854
|
width: "100%",
|
|
2855
|
+
flexGrow: 0,
|
|
2849
2856
|
flexShrink: 0,
|
|
2857
|
+
marginTop: "auto",
|
|
2850
2858
|
alignItems: "center",
|
|
2851
2859
|
justifyContent: "center",
|
|
2852
2860
|
paddingVertical: 12
|