CSS tweaks

This commit is contained in:
2019-05-29 00:55:06 +10:00
parent 9c5004143f
commit b59549a422
2 changed files with 44 additions and 41 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ import Footer from './panels/footer.jsx';
const LazyRoute = (props) => {
const component = Loadable({
loader: props.component,
loading: () => <div>Loading...</div>,
loading: () => <div className='page'><p className='centered'>Loading...</p></div>,
});
return <Route {...props} component={component} />;