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 5bbd1df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 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; }
&.dtext { height: min(15rem, 40vh); }
}
}

Expand Down

0 comments on commit 5bbd1df

Please sign in to comment.