Use a text area for multiline input.

This commit is contained in:
2018-12-22 00:05:32 -08:00
parent ee21fa199d
commit d9ede51428
2 changed files with 14 additions and 9 deletions

View File

@@ -28,9 +28,11 @@ body {
outline: none;
transition: background-color $transition-duration;
font-family: inherit;
font-size: inherit;
}
input {
input, textarea {
@include input-common();
background-color: $inactive-input-color;
color: black;
@@ -134,7 +136,7 @@ div.message-wrapper {
display: flex;
flex-shrink: 0;
input {
input, textarea {
flex-grow: 12;
margin: 3px;
}