css: allow textarea fields to grow horizontally

fixes #299
This commit is contained in:
Thomas Gelf 2018-05-04 18:46:16 +02:00
parent 99ddb9266b
commit d4de84eddc
1 changed files with 4 additions and 0 deletions

View File

@ -354,6 +354,10 @@ input[type=text], input[type=password], textarea, select {
}
}
textarea {
max-width: 100%;
}
select[multiple] {
height: auto;
}