Improve scrolling behavior

Prevent scrolling in the sidebar/ content area scrolling the other section when the boundary of a scrolling area is reached.

https://developer.mozilla.org/en-US/docs/Web/CSS/overscroll-behavior
This commit is contained in:
Tom Moor
2018-03-10 11:26:29 -08:00
committed by GitHub
parent c7d50c4a78
commit 8a884b446d

View File

@@ -5,6 +5,7 @@ const Scrollable = styled.div`
height: 100%;
overflow-y: auto;
overflow-x: hidden;
overscroll-behavior: none;
-webkit-overflow-scrolling: touch;
`;