react-crud-mobile 1.0.829 → 1.0.831

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.
@@ -1767,12 +1767,13 @@ function UIElement(props) {
1767
1767
  var isCard = scope.is('type|layout', 'card');
1768
1768
  if (isCard) {
1769
1769
  return /*#__PURE__*/jsxRuntime.jsx(reactNative.View, {
1770
- style: getStyle('card', _extends({}, boxStyle.box, {
1770
+ style: getStyle('box', _extends({}, boxStyle.box, {
1771
1771
  alignSelf: 'stretch'
1772
1772
  })),
1773
1773
  children: /*#__PURE__*/jsxRuntime.jsx(reactNative.View, {
1774
- style: getStyle('cardInner', {
1775
- padding: 10
1774
+ style: getStyle('boxInner', {
1775
+ paddingHorizontal: 15,
1776
+ paddingVertical: 10
1776
1777
  }),
1777
1778
  children: props.children
1778
1779
  })