dhre-ui-kit 0.0.306 → 0.0.308
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/lib/index.js +6 -2
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +6 -2
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -2128,12 +2128,16 @@ const styles$l = reactNative.StyleSheet.create({
|
|
|
2128
2128
|
},
|
|
2129
2129
|
subContainer: {
|
|
2130
2130
|
paddingHorizontal: horizontalScale(20),
|
|
2131
|
-
marginTop: verticalScale(8)
|
|
2131
|
+
marginTop: verticalScale(8),
|
|
2132
|
+
alignSelf: "flex-start",
|
|
2133
|
+
alignItems: "flex-start"
|
|
2132
2134
|
},
|
|
2133
2135
|
subButtonText: {
|
|
2134
2136
|
textDecorationLine: "underline",
|
|
2135
2137
|
color: "#fff",
|
|
2136
|
-
textDecorationColor: "#fff"
|
|
2138
|
+
textDecorationColor: "#fff",
|
|
2139
|
+
alignSelf: "flex-start",
|
|
2140
|
+
textAlign: "left"
|
|
2137
2141
|
}
|
|
2138
2142
|
});
|
|
2139
2143
|
|