File tree 2 files changed +1
-7
lines changed
2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ const textColor = prop('primaryTextColor');
10
10
11
11
const Header = styled . div `
12
12
width: 100%;
13
- background-color: ${ background } !important ;
13
+ background-color: ${ background } ;
14
14
color: ${ textColor } ;
15
15
padding-left: ${ remSize ( 32 ) } ;
16
16
` ;
Original file line number Diff line number Diff line change @@ -25,12 +25,6 @@ const onRouteChange = (store) => {
25
25
store . dispatch ( stopSketch ( ) ) ;
26
26
} ;
27
27
28
- // TODO: Investigate using react-router for this switch
29
- // const ignoreMobile = () => window.location.search.substring(1).includes('ignoremobile');
30
- // const isMobile = () => window.innerWidth <= 760;
31
- // const IDEView = isMobile() && !ignoreMobile() ? IDEViewMobileScreen : IDEViewScreen;
32
-
33
- // How to use URL as a prop?
34
28
const routes = store => (
35
29
< Route path = "/" component = { App } onChange = { ( ) => { onRouteChange ( store ) ; } } >
36
30
< IndexRoute component = { IDEView } onEnter = { checkAuth ( store ) } />
You can’t perform that action at this time.
0 commit comments