We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e66c73 commit db857d9Copy full SHA for db857d9
client/components/mobile/Sidebar.jsx
@@ -16,7 +16,7 @@ const SidebarWrapper = styled.div`
16
z-index: 2;
17
left: 0;
18
19
- background: white;
+ background: ${prop('backgroundColor')};
20
box-shadow: 0 6px 6px 0 rgba(0,0,0,0.10);
21
`;
22
client/modules/App/App.jsx
@@ -41,7 +41,7 @@ class App extends React.Component {
41
render() {
42
return (
43
<div className="app">
44
- {this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && <DevTools />}
+ {false && this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && <DevTools />}
45
{this.props.children}
46
</div>
47
);
0 commit comments