diff --git a/client/assets/styles/styles.css b/client/assets/styles/styles.css index 83338932..d81509c0 100644 --- a/client/assets/styles/styles.css +++ b/client/assets/styles/styles.css @@ -602,3 +602,7 @@ footer button .ready { #nav-btn, #instance-nav { display: none; } + +.mobile-title { + display: none; +} \ No newline at end of file diff --git a/client/assets/styles/styles.mobile.css b/client/assets/styles/styles.mobile.css index 4746019c..828b814f 100644 --- a/client/assets/styles/styles.mobile.css +++ b/client/assets/styles/styles.mobile.css @@ -52,4 +52,9 @@ .timer-container { margin: 0.5em 0 0 0; } + + .mobile-title { + display: block; + margin-bottom: 1em; + } } diff --git a/client/src/components/footer.jsx b/client/src/components/footer.jsx index 55844592..edad7dd2 100644 --- a/client/src/components/footer.jsx +++ b/client/src/components/footer.jsx @@ -10,8 +10,8 @@ const InstanceFooter = require('./instance.footer'); const GameFooter = require('./game.footer'); const addState = connect( - ({ nav, instance, game }) => { - return { nav, instance, game }; + ({ nav, instance, game, account }) => { + return { nav, instance, game, account }; }, dispatch => ({ setShowNav: v => dispatch(actions.setShowNav(v)), diff --git a/client/src/components/login.jsx b/client/src/components/login.jsx index c80055b9..dca8ade2 100644 --- a/client/src/components/login.jsx +++ b/client/src/components/login.jsx @@ -59,6 +59,7 @@ class Login extends Component { render() { return (
+

mnml.gg