💄 left-align dropdown elements
This commit is contained in:
parent
87784e5a83
commit
114ab9f6c7
2 changed files with 9 additions and 4 deletions
|
@ -48,11 +48,16 @@ const DropdownWrapper = styled.ul`
|
||||||
& button,
|
& button,
|
||||||
& button span,
|
& button span,
|
||||||
& a {
|
& a {
|
||||||
color: ${prop('primaryTextColor')};
|
padding: ${remSize(8)} ${remSize(16)};
|
||||||
width: 100%;
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
justify-content: left;
|
justify-content: left;
|
||||||
padding: ${remSize(8)} ${remSize(16)};
|
|
||||||
|
color: ${prop('primaryTextColor')};
|
||||||
|
width: 100%;
|
||||||
|
justify-content: flex-start;
|
||||||
}
|
}
|
||||||
|
|
||||||
& button span { padding: 0px }
|
& button span { padding: 0px }
|
||||||
|
|
|
@ -34,7 +34,7 @@ class App extends React.Component {
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div className="app">
|
<div className="app">
|
||||||
{false && this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && <DevTools />}
|
{this.state.isMounted && !window.devToolsExtension && getConfig('NODE_ENV') === 'development' && <DevTools />}
|
||||||
{this.props.children}
|
{this.props.children}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue