diff --git a/src/components/Layout.jsx b/src/components/Layout.jsx index d4672356..0bca8fbe 100644 --- a/src/components/Layout.jsx +++ b/src/components/Layout.jsx @@ -1,4 +1,5 @@ import React from 'react' +import ScrollContainer from './ScrollContainer' import theme from '../config/rebass' import colors from '../config/colors' @@ -31,29 +32,33 @@ export default class Layout extends React.Component { }}> {this.props.toolbar}
- {this.props.layerList} + + {this.props.layerList} +
- {this.props.layerEditor} + + {this.props.layerEditor} +
{this.props.map} diff --git a/src/components/ScrollContainer.jsx b/src/components/ScrollContainer.jsx index 83e0425e..171cb2dd 100644 --- a/src/components/ScrollContainer.jsx +++ b/src/components/ScrollContainer.jsx @@ -3,6 +3,7 @@ import scrollbars from './scrollbars.scss' const ScrollContainer = (props) => { return
+ }} + />
return
{this.state.pickerOpened && picker} }) - return - - + return } }