react-crud-mobile 1.0.899 → 1.0.901

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.
@@ -1213,7 +1213,8 @@ function UIQuantity(props) {
1213
1213
  value: {
1214
1214
  flex: 1,
1215
1215
  flexDirection: 'row',
1216
- textAlign: 'center'
1216
+ textAlign: 'center',
1217
+ fontWeight: '500'
1217
1218
  },
1218
1219
  buttonInner: {
1219
1220
  flexDirection: 'row',
@@ -1947,12 +1948,16 @@ function UIElement(props) {
1947
1948
  }
1948
1949
  var boxStyle = /*#__PURE__*/reactNative.StyleSheet.create({
1949
1950
  box: {
1950
- borderWidth: 1,
1951
+ borderWidth: 0,
1951
1952
  borderColor: '#dedede',
1952
1953
  borderStyle: 'solid',
1953
1954
  backgroundColor: 'white',
1954
- borderRadius: 10,
1955
- width: '100%'
1955
+ borderRadius: 12,
1956
+ width: '100%',
1957
+ shadowColor: '#000',
1958
+ shadowOpacity: 0.1,
1959
+ shadowRadius: 4,
1960
+ marginBottom: 16
1956
1961
  }
1957
1962
  });
1958
1963
  var box = /*#__PURE__*/_extends({}, boxStyle.box);