Skip to content

Change textareas to resize vertically only

wirelyre requested to merge wirelyre/tildes:textarea-resize into master

This one's been bugging me for a while but I don't know if it was an intentional design choice or not.

I don't have a development environment set up right now but I checked these manually and the layout seems correct. Everything is still constrained by:

/* scss/modules/_form.scss */
.form-input {
  max-width: 40rem;
}

/* scss/spectre-0.5.1/_forms.scss */
.form-input {
  width: 100%;
}

So they're properly responsive to the width of the page. I assume the previous max-width: none; was because having it suddenly refuse to resize wider on desktop felt weird; with this change it's moot.

Merge request reports