Skip to content

Commit db857d9

Browse files
committed
💄 fix sidebar background set to white
1 parent 3e66c73 commit db857d9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/components/mobile/Sidebar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const SidebarWrapper = styled.div`
1616
z-index: 2;
1717
left: 0;
1818
19-
background: white;
19+
background: ${prop('backgroundColor')};
2020
box-shadow: 0 6px 6px 0 rgba(0,0,0,0.10);
2121
`;
2222

client/modules/App/App.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class App extends React.Component {
4141
render() {
4242
return (
4343
<div className="app">
44-
{this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && <DevTools />}
44+
{false && this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && <DevTools />}
4545
{this.props.children}
4646
</div>
4747
);

0 commit comments

Comments
 (0)