From 5e567525ad5b8fd625555b4f0223f0e70711f45b Mon Sep 17 00:00:00 2001 From: Josh Ryan Date: Tue, 12 Apr 2016 11:19:27 -0500 Subject: [PATCH] Scrolling on timeline for coarse pointers only Fixes #19 --- css/timeline.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/css/timeline.css b/css/timeline.css index e20e647..010cc7b 100644 --- a/css/timeline.css +++ b/css/timeline.css @@ -4,6 +4,13 @@ div#timeline-container { overflow-x: hidden; } +@media (pointer: coarse) { + div#timeline-container { + -webkit-overflow-scrolling: touch; + overflow-x: auto; + } +} + div#timeline { height: 100%; position: relative;