Merge pull request #580 from vector-im/bwindels/scroll-composer

add scrollbar when > 5 lines in composer
This commit is contained in:
Bruno Windels 2021-11-08 12:25:39 +01:00 committed by GitHub
commit b95c918dc6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 {