react-crud-mobile 1.3.324 → 1.3.325

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.
@@ -1195,7 +1195,7 @@ function UIToggle(props) {
1195
1195
  var item = _ref.item,
1196
1196
  index = _ref.index;
1197
1197
  var selected = isSelected(item);
1198
- var style = _extends({}, styles$7.text);
1198
+ var style = _extends({}, styles$7.text, scope.getStyle('text'));
1199
1199
  if (selected) style.color = '#ffffff';
1200
1200
  if (Utils.isEmpty(props.children)) {
1201
1201
  return /*#__PURE__*/jsx(Text, {
@@ -1258,7 +1258,8 @@ var styles$7 = /*#__PURE__*/StyleSheet.create({
1258
1258
  width: '100%',
1259
1259
  justifyContent: 'center',
1260
1260
  flexDirection: 'row',
1261
- alignItems: 'center'
1261
+ alignItems: 'center',
1262
+ margin: 3
1262
1263
  },
1263
1264
  item: {
1264
1265
  backgroundColor: 'background',
@@ -1271,7 +1272,7 @@ var styles$7 = /*#__PURE__*/StyleSheet.create({
1271
1272
  borderRadius: 2
1272
1273
  },
1273
1274
  text: {
1274
- fontSize: 12,
1275
+ fontSize: 13,
1275
1276
  fontWeight: '400'
1276
1277
  }
1277
1278
  });