Skip to content

Commit 2497e50

Browse files
authored
fix(material-experimental/mdc-form-field): scrollbar always vi… (#18438)
Fixes the scroll bars of a textarea elements always being visible on IE.
1 parent b24b9e3 commit 2497e50

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/material-experimental/mdc-form-field/_mdc-text-field-textarea-overrides.scss

+4
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@
2525
margin: 0;
2626
padding: 0;
2727
border: none;
28+
29+
// By default IE always renders scrollbars on textarea.
30+
// This brings it in line with other browsers.
31+
overflow: auto;
2832
}
2933

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

0 commit comments

Comments
 (0)