mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2025-01-09 05:11:46 +01:00
18 lines
338 B
React
18 lines
338 B
React
|
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
|