media.css: Group two @media queries together.

There were two `@media (max-width: 500px)` queries that should have
been grouped together.
This commit is contained in:
Brock Whittaker 2017-10-03 12:01:55 -07:00 committed by Tim Abbott
parent 1b637658df
commit 3a4abc25a1
1 changed files with 8 additions and 11 deletions

View File

@ -219,18 +219,7 @@
.column-left.expanded .bottom_sidebar {
margin-top: 10px;
}
}
@media (max-width: 350px) {
html {
overflow-x: hidden;
}
.stream_row .description {
display: none;
}
}
@media (max-width: 500px) {
.compose_stream_button,
.compose_private_button {
padding: 5px 10px 5px 10px;
@ -341,7 +330,15 @@
.message_content {
padding-right: 50px;
}
}
@media (max-width: 350px) {
html {
overflow-x: hidden;
}
.stream_row .description {
display: none;
}
}
@media only screen and (min-device-width: 300px) and (max-device-width: 700px) {