Skip to content

Commit

Permalink
fix: Text area css issue prevented scrolling, fixes #8797
Browse files Browse the repository at this point in the history
  • Loading branch information
torkelo committed Jul 6, 2017
1 parent 9341412 commit e5b499a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions public/sass/components/_gf-form.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e5b499a

Please sign in to comment.