mirror of https://github.com/zulip/zulip.git
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:
parent
9cc5014ae9
commit
60e3abddcb
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue