post: disable input field resizing
Textarea can be resized manually, but this does play well with the automatic resizing (yet), disabling for now.pull/13/head
parent
7d9f31f7c6
commit
8081d12254
src
|
@ -46,6 +46,7 @@ textarea:focus {
|
|||
textarea {
|
||||
max-height: 50vh;
|
||||
min-height: 20px;
|
||||
resize: none;
|
||||
transition: min-height .1s ease-out, height .1s ease-out;
|
||||
}
|
||||
textarea:focus {
|
||||
|
|
Loading…
Reference in New Issue