File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -48,11 +48,16 @@ const DropdownWrapper = styled.ul`
48
48
& button,
49
49
& button span,
50
50
& a {
51
- color: ${ prop ( 'primaryTextColor' ) } ;
52
- width: 100%;
51
+ padding: ${ remSize ( 8 ) } ${ remSize ( 16 ) } ;
52
+ }
53
+
54
+ * {
53
55
text-align: left;
54
56
justify-content: left;
55
- padding: ${ remSize ( 8 ) } ${ remSize ( 16 ) } ;
57
+
58
+ color: ${ prop ( 'primaryTextColor' ) } ;
59
+ width: 100%;
60
+ justify-content: flex-start;
56
61
}
57
62
58
63
& button span { padding: 0px }
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ class App extends React.Component {
34
34
render ( ) {
35
35
return (
36
36
< div className = "app" >
37
- { false && this . state . isMounted && ! window . devToolsExtension && getConfig ( 'NODE_ENV' ) === 'development' && < DevTools /> }
37
+ { this . state . isMounted && ! window . devToolsExtension && getConfig ( 'NODE_ENV' ) === 'development' && < DevTools /> }
38
38
{ this . props . children }
39
39
</ div >
40
40
) ;
You can’t perform that action at this time.
0 commit comments