This commit is contained in:
cuom1999 2023-11-01 02:08:36 -05:00
parent 7a05ad1c3b
commit fcbf74ca97
6 changed files with 70 additions and 55 deletions

View file

@ -10,7 +10,15 @@
}
::-webkit-scrollbar {
width: 20px;
width: 16px;
background-color: transparent !important;
}
#chat-input::-webkit-scrollbar {
width: 22px;
}
#chat-input::-webkit-scrollbar-thumb {
border: 10px solid transparent;
}
::-webkit-scrollbar-track {
@ -144,9 +152,11 @@
transition: box-shadow 0.3s ease-in-out;
width: 80%;
resize: none;
height: 80%;
height: 70%;
max-height: 200px;
overflow-y: auto;
margin-top: auto;
margin-bottom: 6px;
}
#chat-input:focus {
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);

View file

@ -561,7 +561,7 @@
this.style.height = (this.scrollHeight) + 'px';
$(this).css('border-radius', '30px');
} else {
$(this).css('height', '80%');
$(this).css('height', '70%');
}
});