Fix concatenation of media queries in customstyles.css

When concatenating multiple media queries, only the first `@media` is
necessary.
This commit is contained in:
Matthias Schmidt
2016-12-28 21:43:57 +01:00
parent 82e4157a86
commit bc52456062

View File

@ -924,7 +924,7 @@ span.soft {
}
@media only screen and (min-width: 900px), @media only screen and (min-device-width: 900px) {
@media only screen and (min-width: 900px), only screen and (min-device-width: 900px) {
.col-md-9 img {
max-width: 700px;
max-height: 700px;