Skip to content

Commit 035aa75

Browse files
committed
Updated text input style
1 parent 7121538 commit 035aa75

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/components/InputText.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default function InputText(props) {
1616
<View style={styles.yellowMainView}>
1717
{imgView()}
1818
<View style={styles.yellowView}>
19-
<Text style={[styles.text, styles.yellowTxt]}>{`${meta.label} ${isMandatory ? '*' : ''}`}</Text>
19+
<Text style={[styles.yellowTxt]}>{`${meta.label} ${isMandatory ? '*' : ''}`}</Text>
2020
</View>
2121
</View> :
2222
<Text style={[styles.text, meta.textStyle]}>{`${meta.label} ${isMandatory ? '*' : ''}`}</Text>
@@ -54,11 +54,11 @@ const styles = StyleSheet.create({
5454
},
5555
yellowView: {
5656
backgroundColor: '#FDDE02',
57-
paddingHorizontal: 16,
58-
paddingVertical: 12,
57+
paddingHorizontal: 12,
58+
paddingVertical: 8,
5959
borderRadius: 20,
6060
borderTopLeftRadius: 0,
61-
width: '75%',
61+
width: '80%',
6262
marginLeft: 10,
6363
},
6464
yellowTxt: {

0 commit comments

Comments
 (0)