diff --git a/client/components/Dropdown.jsx b/client/components/Dropdown.jsx index b0dfe0b2..e29da90a 100644 --- a/client/components/Dropdown.jsx +++ b/client/components/Dropdown.jsx @@ -48,11 +48,16 @@ const DropdownWrapper = styled.ul` & button, & button span, & a { - color: ${prop('primaryTextColor')}; - width: 100%; + padding: ${remSize(8)} ${remSize(16)}; + } + + * { text-align: left; justify-content: left; - padding: ${remSize(8)} ${remSize(16)}; + + color: ${prop('primaryTextColor')}; + width: 100%; + justify-content: flex-start; } & button span { padding: 0px } diff --git a/client/modules/App/App.jsx b/client/modules/App/App.jsx index 2c960b8b..af441a9d 100644 --- a/client/modules/App/App.jsx +++ b/client/modules/App/App.jsx @@ -34,7 +34,7 @@ class App extends React.Component { render() { return (
- {false && this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && } + {this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && } {this.props.children}
);