File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Expand file tree Collapse file tree 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');
1010
1111const Header = styled . div `
1212 width: 100%;
13- background-color: ${ background } !important ;
13+ background-color: ${ background } ;
1414 color: ${ textColor } ;
1515 padding-left: ${ remSize ( 32 ) } ;
1616` ;
Original file line number Diff line number Diff line change @@ -25,12 +25,6 @@ const onRouteChange = (store) => {
2525 store . dispatch ( stopSketch ( ) ) ;
2626} ;
2727
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?
3428const routes = store => (
3529 < Route path = "/" component = { App } onChange = { ( ) => { onRouteChange ( store ) ; } } >
3630 < IndexRoute component = { IDEView } onEnter = { checkAuth ( store ) } />
You can’t perform that action at this time.
0 commit comments