Skip to content

Commit

Permalink
fix(input): Fix input label from shifting when text is too long on iOS,
Browse files Browse the repository at this point in the history
closes #801
  • Loading branch information
adamdbradley committed Mar 19, 2014
1 parent ed9f7e5 commit b8d4c51
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scss/_form.scss
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,14 @@ textarea {
@include align-items(center);
position: relative;
overflow: hidden;
padding: 6px 8px 5px;
padding: 6px 0 5px 8px;

input {
@include border-radius(0);
@include flex(1, 0, 220px);
@include appearance(none);
margin: 0;
padding-right: 24px;
background-color: transparent;
}

Expand Down

0 comments on commit b8d4c51

Please sign in to comment.