File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed 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
- { /* FIXME: remove false */ }
37
+ { /* FIXME: Remove false */ }
38
38
{ false && this . state . isMounted && ! window . devToolsExtension && getConfig ( 'NODE_ENV' ) === 'development' && < DevTools /> }
39
39
{ this . props . children }
40
40
</ div >
Original file line number Diff line number Diff line change @@ -6,4 +6,13 @@ import { remSize } from '../../theme';
6
6
export default styled . div `
7
7
z-index: 0;
8
8
margin-top: ${ props => remSize ( props . slimheader ? 50 : 68 ) } ;
9
+
10
+ .sketch-list__sort-button { padding: 0 }
11
+
12
+ td { font-size: ${ remSize ( 10 ) } };
13
+ th {
14
+ font-size: ${ remSize ( 14 ) } ;
15
+ /* font-weight: bold; */
16
+ max-width: ${ remSize ( 140 ) }
17
+ };
9
18
` ;
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export const useModalBehavior = (hideOverlay) => {
21
21
22
22
// Return values
23
23
const setRef = ( r ) => { ref . current = r ; } ;
24
- const [ visible , setVisible ] = useState ( true ) ;
24
+ const [ visible , setVisible ] = useState ( false ) ;
25
25
const trigger = ( ) => setVisible ( ! visible ) ;
26
26
27
27
const hide = ( ) => setVisible ( false ) ;
You can’t perform that action at this time.
0 commit comments