Skip to content

Commit

Permalink
Only allow vertical resizing of edit textarea (#431)
Browse files Browse the repository at this point in the history
Manual horizontal resizing completely messes up the page structure, and
it's very easy for a user to accidentally do horizontal resizing while
trying to perform vertical resizing with their cursor. Vertical-only
resize prevents that.
  • Loading branch information
omertuc authored Apr 11, 2024
1 parent 0f44341 commit 0691180
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/pages/edit/Row.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
max-width: 50vw;
height: 1lh;
min-height: 1lh;
resize: both;
resize: vertical;
}

.original {
Expand Down

0 comments on commit 0691180

Please sign in to comment.