💄 fix sidebar background set to white
This commit is contained in:
parent
3e66c73e2f
commit
db857d91ff
2 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ const SidebarWrapper = styled.div`
|
|||
z-index: 2;
|
||||
left: 0;
|
||||
|
||||
background: white;
|
||||
background: ${prop('backgroundColor')};
|
||||
box-shadow: 0 6px 6px 0 rgba(0,0,0,0.10);
|
||||
`;
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ class App extends React.Component {
|
|||
render() {
|
||||
return (
|
||||
<div className="app">
|
||||
{this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && <DevTools />}
|
||||
{false && this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && <DevTools />}
|
||||
{this.props.children}
|
||||
</div>
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue