Skip to content

Commit

Permalink
Fix for GeekyAnts#1173 no negative margin left for input insde stacke…
Browse files Browse the repository at this point in the history
…d form or floating form
  • Loading branch information
andreimc committed Aug 28, 2017
1 parent e716bc8 commit 95c23ee
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,10 @@ captures/
*.iml
.idea

# VsCode

.vscode/*

# Keystore files
*.jks

Expand Down
4 changes: 2 additions & 2 deletions dist/src/theme/components/Form.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/src/theme/components/Form.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/theme/components/Form.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default (variables = variable) => {
},
"NativeBase.Input": {
paddingLeft: null,
marginLeft: platform === "ios" ? undefined : -5
marginLeft: null
},
"NativeBase.Icon": {
marginTop: 36
Expand All @@ -38,7 +38,7 @@ export default (variables = variable) => {
"NativeBase.Input": {
paddingLeft: null,
top: 10,
marginLeft: platform === "ios" ? undefined : -5
marginLeft: null
},
"NativeBase.Label": {
left: 0,
Expand Down

0 comments on commit 95c23ee

Please sign in to comment.