1
0
mirror of https://github.com/webslides/WebSlides.git synced 2025-08-17 18:37:00 +02:00

Changing scrollable container

To avoid elastic scroll on OSX
This commit is contained in:
Antonio Laguna
2017-02-27 12:43:59 +01:00
parent 6674a4f203
commit f6ccd39158

View File

@@ -302,8 +302,19 @@ dd {
1. Base --> Baseline: 8px = .8rem
=========================================== */
html,
body {
width: 100%;
height: 100%;
overflow: hidden;
}
#webslides {
height: 100vh;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
}
/* == Prototype faster - Vertical rhythm == */