Commit e5b499a9 by Torkel Ödegaard

fix: Text area css issue prevented scrolling, fixes #8797

parent 9341412a
......@@ -117,6 +117,11 @@ $gf-form-margin: 0.25rem;
overflow: hidden;
text-overflow: ellipsis;
// text areas should be scrollable
@at-root textarea#{&} {
overflow: auto;
}
// Unstyle the caret on `<select>`s in IE10+.
&::-ms-expand {
background-color: transparent;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment