react-crud-mobile 1.3.327 → 1.3.328

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.
@@ -819,12 +819,13 @@ function UIInput(props) {
819
819
  //v4
820
820
  var defs = _extends({}, Utils.nvl(decode[type], {}), element.inputProps);
821
821
  var inputStyle = Utils.call(function () {
822
- var css = _extends({}, style('input'), style(type));
823
822
  var size = element.size;
823
+ var css = {};
824
824
  if (size === 'small') {
825
- css.height = 30;
825
+ css.height = 33;
826
826
  css.fontSize = 12;
827
827
  }
828
+ css = _extends({}, style(type), css, style('input'));
828
829
  return css;
829
830
  });
830
831
  if (defs.autoHeight) {