react-crud-mobile 1.3.324 → 1.3.326

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,9 @@ 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,
1263
+ gap: 5
1262
1264
  },
1263
1265
  item: {
1264
1266
  backgroundColor: 'background',
@@ -1271,7 +1273,7 @@ var styles$7 = /*#__PURE__*/StyleSheet.create({
1271
1273
  borderRadius: 2
1272
1274
  },
1273
1275
  text: {
1274
- fontSize: 12,
1276
+ fontSize: 13,
1275
1277
  fontWeight: '400'
1276
1278
  }
1277
1279
  });