react-crud-mobile 1.0.899 → 1.0.900

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.
@@ -1947,12 +1947,16 @@ function UIElement(props) {
1947
1947
  }
1948
1948
  var boxStyle = /*#__PURE__*/reactNative.StyleSheet.create({
1949
1949
  box: {
1950
- borderWidth: 1,
1950
+ borderWidth: 0,
1951
1951
  borderColor: '#dedede',
1952
1952
  borderStyle: 'solid',
1953
1953
  backgroundColor: 'white',
1954
- borderRadius: 10,
1955
- width: '100%'
1954
+ borderRadius: 12,
1955
+ width: '100%',
1956
+ shadowColor: '#000',
1957
+ shadowOpacity: 0.1,
1958
+ shadowRadius: 4,
1959
+ marginBottom: 16
1956
1960
  }
1957
1961
  });
1958
1962
  var box = /*#__PURE__*/_extends({}, boxStyle.box);