Skip to content

Commit

Permalink
fix(textarea): negative indent on iOS only. Fixes #4761
Browse files Browse the repository at this point in the history
  • Loading branch information
mlynch committed Dec 14, 2015
1 parent 834db66 commit cff02a5
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions scss/_form.scss
Expand Up @@ -157,10 +157,10 @@ textarea {
}

.item-select.item-stacked-label select {
position: relative;
padding: 0px;
max-width: 90%;
direction:ltr;
position: relative;
padding: 0px;
max-width: 90%;
direction:ltr;
white-space: pre-wrap;
margin: -3px;
}
Expand Down Expand Up @@ -224,6 +224,8 @@ input[type="color"] {
input[type="week"] {
padding-top: 8px;
}
}
.platform-ios {
textarea {
text-indent: -3px;
}
Expand Down

1 comment on commit cff02a5

@allen6131
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

im still having this issue on iOS any ideas ?

Please sign in to comment.