💄 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;
|
z-index: 2;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
|
||||||
background: white;
|
background: ${prop('backgroundColor')};
|
||||||
box-shadow: 0 6px 6px 0 rgba(0,0,0,0.10);
|
box-shadow: 0 6px 6px 0 rgba(0,0,0,0.10);
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,7 @@ class App extends React.Component {
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div className="app">
|
<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}
|
{this.props.children}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue