Skip to content

Commit

Permalink
fix(input): overflow-y scrollbar is displayed (IE) (#3571)
Browse files Browse the repository at this point in the history
y-scrollbar is displayed when placeholder text line-height is bigger than md-input-placeholder height (on IE browser)

fixes #3570
  • Loading branch information
Heo authored and mmalerba committed Mar 13, 2017
1 parent f8cdd92 commit 7ffaf9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/input/input-container.scss
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ $mat-input-underline-disabled-background-image:
display: none;
white-space: nowrap;
text-overflow: ellipsis;
overflow-x: hidden;
overflow: hidden;

transform: translateY(0);
transform-origin: bottom left;
Expand Down

0 comments on commit 7ffaf9e

Please sign in to comment.