Sync bottom form height with the font size

This commit is contained in:
Cohee
2023-08-24 18:32:42 +03:00
parent 3e25c3f51c
commit 7010e05f8e
3 changed files with 15 additions and 11 deletions

View File

@@ -843,7 +843,7 @@ jQuery(async function () {
//this makes the chat input text area resize vertically to match the text size (limited by CSS at 50% window height)
$('#send_textarea').on('input', function () {
this.style.height = '30px';
this.style.height = window.getComputedStyle(this).getPropertyValue('min-height');
this.style.height = (this.scrollHeight) + 'px';
});