diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2018-11-08 14:05:53 +0100 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2018-11-08 14:05:53 +0100 |
commit | b6ce0a9724f123396b59e9b7b90ab2d44dda2534 (patch) | |
tree | 45553888d6a9d91b6204b0218aea117577a8bc73 | |
parent | 1c07fccc350eaeb75542ad891236a6ddcee33e8b (diff) | |
download | perl-software-in-gnu-guix-b6ce0a9724f123396b59e9b7b90ab2d44dda2534.tar perl-software-in-gnu-guix-b6ce0a9724f123396b59e9b7b90ab2d44dda2534.tar.gz |
fix concave/convex transitions on vertical slides #1947
-rw-r--r-- | css/reveal.css | 3 | ||||
-rw-r--r-- | css/reveal.scss | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/css/reveal.css b/css/reveal.css index b024bd0..4a9c604 100644 --- a/css/reveal.css +++ b/css/reveal.css @@ -486,7 +486,8 @@ body { perspective-origin: 50% 40%; } .reveal .slides > section { - -ms-perspective: 600px; } + -webkit-perspective: 600px; + perspective: 600px; } .reveal .slides > section, .reveal .slides > section > section { diff --git a/css/reveal.scss b/css/reveal.scss index eeed56b..63d1d45 100644 --- a/css/reveal.scss +++ b/css/reveal.scss @@ -588,7 +588,7 @@ $controlsArrowAngleActive: 36deg; } .reveal .slides>section { - -ms-perspective: 600px; + perspective: 600px; } .reveal .slides>section, |