[TASK] Improve iphone support

This commit is contained in:
Xaver Maierhofer 2016-06-14 01:35:41 +02:00
parent 45d2a54065
commit 3d2b4e7f84
1 changed files with 10 additions and 2 deletions

View File

@ -28,13 +28,21 @@
width: auto;
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
@media all and (device-height: 1024px) and (orientation: portrait) {
height: 800px;
}
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: landscape) {
@media all and (device-width: 768px) and (orientation: landscape) {
height: 400px;
}
@media only screen and (device-height: 568px) and (orientation: portrait) {
height: 320px;
}
@media only screen and (device-width: 320px) and (orientation: landscape) {
height: 240px;
}
}
.stroke-first {