Skip to content
Snippets Groups Projects
Commit a4546d7d authored by Kyle Doherty's avatar Kyle Doherty
Browse files

fix sidebar scroll

parent bb702988
No related branches found
No related tags found
No related merge requests found
......@@ -5,14 +5,14 @@ const SidebarLayout = ({ className, style, sidebar, children }) =>
<div className={className} style={{ ...style, display: "flex", flexDirection: "row"}}>
{ React.cloneElement(
sidebar,
{ style: { flexShrink: 0, overflowY: 'scroll' },
className: 'scroll-show scroll--light scroll-show--hover'
{ style: { flexShrink: 0 },
className: 'scroll-y scroll-show scroll--light scroll-show--hover'
},
sidebar.props.children
)}
{ children && React.cloneElement(
React.Children.only(children),
{ style: { flex: 1, overflowY: 'scroll', display: 'flex', flexDirection: 'column', height: '100%' }},
{ style: { flex: 1, overflowY: 'auto', display: 'flex', flexDirection: 'column', height: '100%' }},
React.Children.only(children).props.children
)}
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment