diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2015-09-10 11:26:05 +0200 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2015-09-10 11:26:05 +0200 |
commit | 1116d99e87c521b9c9c3de164a2f9d766bbdf224 (patch) | |
tree | c59e2a571eda4e5730aad2cb77e1b2309d9ef2e7 /css | |
parent | 0d37757f3f34dff5840eff6bd5ac6735938234a6 (diff) | |
download | fosdem-2018-presentation-1116d99e87c521b9c9c3de164a2f9d766bbdf224.tar fosdem-2018-presentation-1116d99e87c521b9c9c3de164a2f9d766bbdf224.tar.gz |
prevent swipes on speaker notes
Diffstat (limited to 'css')
-rw-r--r-- | css/reveal.css | 3 | ||||
-rw-r--r-- | css/reveal.scss | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/css/reveal.css b/css/reveal.css index df406a8..cb54d53 100644 --- a/css/reveal.css +++ b/css/reveal.css @@ -1179,7 +1179,8 @@ body { -moz-box-sizing: border-box; box-sizing: border-box; text-align: left; - font-family: Helvetica, sans-serif; } + font-family: Helvetica, sans-serif; + -webkit-overflow-scrolling: touch; } .reveal .speaker-notes.visible:not(:empty) { display: block; } diff --git a/css/reveal.scss b/css/reveal.scss index bcc69f8..330551b 100644 --- a/css/reveal.scss +++ b/css/reveal.scss @@ -1315,6 +1315,7 @@ body { box-sizing: border-box; text-align: left; font-family: Helvetica, sans-serif; + -webkit-overflow-scrolling: touch; } .reveal .speaker-notes.visible:not(:empty) { |