Skip to content

Commit

Permalink
fix(material-experimental/mdc-form-field): scrollbar always vi… (#18438)
Browse files Browse the repository at this point in the history
Fixes the scroll bars of a textarea elements always being visible on IE.
  • Loading branch information
crisbeto authored Feb 7, 2020
1 parent b24b9e3 commit 2497e50
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
margin: 0;
padding: 0;
border: none;

// By default IE always renders scrollbars on textarea.
// This brings it in line with other browsers.
overflow: auto;
}

// By default, MDC aligns the label using percentage. This will be overwritten based
Expand Down

0 comments on commit 2497e50

Please sign in to comment.