style: optimize the height of textarea when it blurs on mobile

This commit is contained in:
leedom 2023-04-01 07:26:45 +08:00
parent ba08b10de1
commit ebea984ab4
1 changed files with 5 additions and 0 deletions

View File

@ -422,6 +422,11 @@
@media only screen and (max-width: 600px) {
.chat-input {
font-size: 16px;
height: 25px;
&:focus {
height: auto;
}
}
}