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
13 lines
236 B
JavaScript
13 lines
236 B
JavaScript
// @flow
|
|
import styled from 'styled-components';
|
|
|
|
const Scrollable = styled.div`
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
overscroll-behavior: none;
|
|
-webkit-overflow-scrolling: touch;
|
|
`;
|
|
|
|
export default Scrollable;
|