maputnik/src/components/ScrollContainer.jsx

18 lines
338 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={{
overflowY: "scroll",
bottom:0,
left:0,
right:0,
top:1,
position: "absolute",
}}>
{props.children}
</div>
}
export default ScrollContainer