maputnik/src/components/ScrollContainer.jsx

19 lines
364 B
React
Raw Normal View History

2016-12-17 20:19:01 +01:00
import React from 'react'
import scrollbars from './scrollbars.scss'
const ScrollContainer = (props) => {
return <div className={scrollbars.darkScrollbar} style={{
2016-12-21 12:06:33 +01:00
overflowX: "visible",
2016-12-17 20:19:01 +01:00
overflowY: "scroll",
bottom:0,
left:0,
right:0,
top:1,
position: "absolute",
}}>
{props.children}
</div>
}
export default ScrollContainer