add scrollbar when > 5 lines in composer

This commit is contained in:
Bruno Windels 2021-11-08 11:19:24 +01:00
parent 2afcddbf49
commit e9586711e0

View File

@ -548,6 +548,8 @@ a {
box-sizing: border-box;
overflow: hidden;
max-height: 113px; /* 5 lines */
overflow-y: auto;
overflow-y: overlay;
}
.MessageComposer_input > button.send {