react-crud-mobile 1.0.547 → 1.0.548
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.
- package/dist/react-crud-mobile.cjs.development.js +4 -2
- package/dist/react-crud-mobile.cjs.development.js.map +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js.map +1 -1
- package/dist/react-crud-mobile.esm.js +4 -2
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/UIElement.tsx +3 -1
|
@@ -480,6 +480,9 @@ elementStyle.card = StyleSheet.create({
|
|
|
480
480
|
});
|
|
481
481
|
|
|
482
482
|
elementStyle.input = StyleSheet.create({
|
|
483
|
+
label: {
|
|
484
|
+
paddingLeft: 8,
|
|
485
|
+
},
|
|
483
486
|
inner: {
|
|
484
487
|
flex: 1,
|
|
485
488
|
width: '100%',
|
|
@@ -540,7 +543,6 @@ const styles = StyleSheet.create({
|
|
|
540
543
|
fontWeight: 400,
|
|
541
544
|
fontSize: 12,
|
|
542
545
|
color: 'labelColor',
|
|
543
|
-
paddingLeft: 8,
|
|
544
546
|
},
|
|
545
547
|
inner: { width: '100%' },
|
|
546
548
|
});
|