media.css: Make compose box not collapse to two lines.

This makes the compose box not collapse to two lines by making input
fields smaller.

Fixes: #6366.
This commit is contained in:
Brock Whittaker 2017-10-03 12:11:37 -07:00 committed by Tim Abbott
parent 9cc5014ae9
commit 60e3abddcb
1 changed files with 12 additions and 0 deletions

View File

@ -332,6 +332,18 @@
}
}
@media (max-width: 370px) {
#subject.recipient_box {
width: calc(100% - 175px);
min-width: 95px;
}
.compose-content {
margin-right: 5px;
margin-left: 5px;
}
}
@media (max-width: 350px) {
html {
overflow-x: hidden;