Skip to content

Commit

Permalink
Increase max height of textareas to 40rem.
Browse files Browse the repository at this point in the history
  • Loading branch information
nottalulah committed Sep 27, 2024
1 parent b88009c commit 756f2dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/javascript/src/styles/common/simple_form.scss
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ form.simple_form {
textarea {
width: 100%;
max-width: 60rem;
max-height: 15rem;
max-height: 40rem;

&.text { height: 20vh; }
&.dtext { height: 40vh; }
&.text { height: min(15rem, 20vh); }
&.dtext { height: min(15rem, 40vh); }
}
}

Expand Down

0 comments on commit 756f2dc

Please sign in to comment.