1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-09-01 02:32:54 +02:00

prevent mobile safari header from covering presentation content

This commit is contained in:
Hakim El Hattab
2017-06-13 09:43:05 +02:00
parent 9342d19b5a
commit 1233092223
3 changed files with 21 additions and 0 deletions

View File

@@ -569,6 +569,16 @@ $controlsArrowAngleActive: 36deg;
touch-action: none;
}
// Mobile Safari sometimes overlays a header at the top
// of the page when in landscape mode. Using fixed
// positioning ensures that reveal.js reduces its height
// when this header is visible.
@media only screen and (orientation : landscape) {
.reveal.ua-iphone {
position: fixed;
}
}
.reveal .slides {
position: absolute;
width: 100%;