mirror of https://github.com/zulip/zulip.git
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:
parent
1b637658df
commit
3a4abc25a1
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue