bottom bar 40px to 30px

This commit is contained in:
RossAscends
2023-08-23 16:19:54 +09:00
parent b385bd190a
commit 5474f29f2d
2 changed files with 14 additions and 14 deletions

View File

@@ -841,7 +841,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 = '40px';
this.style.height = '30px';
this.style.height = (this.scrollHeight) + 'px';
});