Photos/Carousel: Fix ratio for narrow screens
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-04-21 19:23:15 +02:00
parent 5835223a02
commit 40c57fee13
2 changed files with 7 additions and 0 deletions

View File

@@ -58,6 +58,10 @@
max-width: 1180px;
margin: 0;
padding: 0;
@media (min-aspect-ratio: 16/9) {
max-width: 1000px;
}
}
}

View File

@@ -17,6 +17,9 @@
@include breakpoint (1680px) {
max-width: 1424px;
}
@media (min-aspect-ratio: 16/9) {
max-width: 1200px;
}
}