diff --git a/public/components/App.jsx b/public/components/App.jsx index a603775..4571fc7 100644 --- a/public/components/App.jsx +++ b/public/components/App.jsx @@ -25,12 +25,15 @@ import React from 'react'; import { connect } from 'react-redux'; import { HashRouter, BrowserRouter } from 'react-router-dom'; -import Background from '@objects/background/Background'; +import Styles from './App.scss'; + import Header from './header/Header'; import Footer from './footer/Footer'; -import Routes, { RouteWrapper } from './page/Routes'; +import Routes, { RouteWrapper } from './page/route/Routes'; import Favicon from './Favicon'; +import Background from '@objects/background/Background'; + //Routes Definitions const AppRoutes = (props) => { return ( @@ -67,7 +70,7 @@ class App extends React.Component { let clazz = "c-app"; //Append any other clazzes there may be. - if(className) clazz += " " + className; + if(className) clazz += ` ${className}`; //For testing you can switch the router type let RouterType = BrowserRouter; @@ -75,10 +78,13 @@ class App extends React.Component { return ( -
+
- this.onEntering() } /> +
+ this.onEntering() } /> +
+
); diff --git a/public/styles/components/_app.scss b/public/components/App.scss similarity index 89% rename from public/styles/components/_app.scss rename to public/components/App.scss index 30787d6..f7fe3c8 100644 --- a/public/styles/components/_app.scss +++ b/public/components/App.scss @@ -8,6 +8,8 @@ * Version: * 1.0.0 - 2018/05/03 */ +@import '~@styles/global'; + .c-app { overflow-x: hidden;//Temporary until I find time to find the overflowing element } diff --git a/public/components/footer/Footer.jsx b/public/components/footer/Footer.jsx index 32813a3..4b41edc 100644 --- a/public/components/footer/Footer.jsx +++ b/public/components/footer/Footer.jsx @@ -34,7 +34,7 @@ import { PageBoundary } from '@components/page/Page'; const FooterLink = (props) => { let { title, className } = props; return ( - + { Language.get(`footer.links.${title}`) } ); @@ -51,7 +51,7 @@ class Footer extends React.Component { let { className } = this.props; return ( -