Is your feature request related to a problem?
Yes, it can be a bit awkward when entering longer feedback or notes because standard input fields stay fixed at a small width and height, making it hard to review or edit what I've typed without constant scrolling.
Describe the solution you'd like
It would be wonderful if text input fields could automatically expand both their width and height as you type (or allow manual drag-resizing in both directions). This would make writing, editing, and reviewing multi-line comments much smoother and more comfortable
Which surface(s) does this apply to?
Additional context
This could be implemented either by using a <textarea> with modern CSS (field-sizing: content) for fluid multi-line resizing, or by enabling manual resizing with resize: both; overflow: auto;.
Maybe this work:
textarea {
field-sizing: content;
min-height: 42px;
min-width: 200px;
max-width: 100%;
}
And THANKS for a nice review tool - Yai 😍
Is your feature request related to a problem?
Yes, it can be a bit awkward when entering longer feedback or notes because standard input fields stay fixed at a small width and height, making it hard to review or edit what I've typed without constant scrolling.
Describe the solution you'd like
It would be wonderful if text input fields could automatically expand both their width and height as you type (or allow manual drag-resizing in both directions). This would make writing, editing, and reviewing multi-line comments much smoother and more comfortable
Which surface(s) does this apply to?
markdown-review)Additional context
This could be implemented either by using a <textarea> with modern CSS (field-sizing: content) for fluid multi-line resizing, or by enabling manual resizing with resize: both; overflow: auto;.
Maybe this work:
And THANKS for a nice review tool - Yai 😍