Skip to content

Commit

Permalink
Solved padding issue (#325)
Browse files Browse the repository at this point in the history
  • Loading branch information
alvaromb authored and gcanti committed Feb 28, 2017
1 parent d015d11 commit aa6aa7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/stylesheets/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ var stylesheet = Object.freeze({
color: INPUT_COLOR,
fontSize: FONT_SIZE,
height: 36,
padding: 7,
padding: (Platform.OS === 'ios') ? 7 : 0,
borderRadius: 4,
borderColor: BORDER_COLOR,
borderWidth: 1,
Expand All @@ -85,7 +85,7 @@ var stylesheet = Object.freeze({
color: INPUT_COLOR,
fontSize: FONT_SIZE,
height: 36,
padding: 7,
padding: (Platform.OS === 'ios') ? 7 : 0,
borderRadius: 4,
borderColor: ERROR_COLOR,
borderWidth: 1,
Expand All @@ -95,7 +95,7 @@ var stylesheet = Object.freeze({
notEditable: {
fontSize: FONT_SIZE,
height: 36,
padding: 7,
padding: (Platform.OS === 'ios') ? 7 : 0,
borderRadius: 4,
borderColor: BORDER_COLOR,
borderWidth: 1,
Expand Down

0 comments on commit aa6aa7e

Please sign in to comment.