Skip to content

Commit

Permalink
Only allow vertical resizing of edit textarea
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 to accidentally for a user to do horizontal resizing
while trying to perform vertical resizing with their cursor.
Vertical-only resize prevents that.
  • Loading branch information
omertuc committed Mar 29, 2024
1 parent 8dc6911 commit b8f1ed6
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 b8f1ed6

Please sign in to comment.