💄 fix sidebar background set to white

This commit is contained in:
ghalestrilo 2020-08-27 17:19:32 -03:00
parent 3e66c73e2f
commit db857d91ff
2 changed files with 2 additions and 2 deletions

View File

@ -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);
`;

View File

@ -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>
);