Skip to content

Commit

Permalink
Merge pull request #153 from sendbird/fix/input-paddings
Browse files Browse the repository at this point in the history
fix: replace padding with specific directions
  • Loading branch information
bang9 authored Jan 22, 2024
2 parents 08c63bd + 24f49b4 commit 6e75382
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const Prompt = ({
variant={'underline'}
value={text}
onChangeText={setText}
style={{ paddingHorizontal: 0, paddingVertical: 10 }}
style={{ paddingLeft: 0, paddingRight: 0, paddingTop: 10, paddingBottom: 10 }}
/>
</View>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@ const styles = createStyleSheet({
flex: 1,
height: '100%',
fontSize: 14,
padding: 0,
paddingLeft: 0,
paddingTop: 0,
paddingBottom: 0,
paddingRight: 0,
},
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,10 @@ const styles = createStyleSheet({
},
input: {
flex: 1,
paddingVertical: 0,
paddingHorizontal: 0,
paddingLeft: 0,
paddingRight: 0,
paddingTop: 0,
paddingBottom: 0,
},
removeButtonContainer: {
alignItems: 'flex-end',
Expand Down

0 comments on commit 6e75382

Please sign in to comment.