fix footer
This commit is contained in:
parent
3705751d2b
commit
d66755e8d6
@ -602,3 +602,7 @@ footer button .ready {
|
|||||||
#nav-btn, #instance-nav {
|
#nav-btn, #instance-nav {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mobile-title {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
@ -52,4 +52,9 @@
|
|||||||
.timer-container {
|
.timer-container {
|
||||||
margin: 0.5em 0 0 0;
|
margin: 0.5em 0 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mobile-title {
|
||||||
|
display: block;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -10,8 +10,8 @@ const InstanceFooter = require('./instance.footer');
|
|||||||
const GameFooter = require('./game.footer');
|
const GameFooter = require('./game.footer');
|
||||||
|
|
||||||
const addState = connect(
|
const addState = connect(
|
||||||
({ nav, instance, game }) => {
|
({ nav, instance, game, account }) => {
|
||||||
return { nav, instance, game };
|
return { nav, instance, game, account };
|
||||||
},
|
},
|
||||||
dispatch => ({
|
dispatch => ({
|
||||||
setShowNav: v => dispatch(actions.setShowNav(v)),
|
setShowNav: v => dispatch(actions.setShowNav(v)),
|
||||||
|
|||||||
@ -59,6 +59,7 @@ class Login extends Component {
|
|||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<main>
|
<main>
|
||||||
|
<h1 class="mobile-title" >mnml.gg</h1>
|
||||||
<div class="login">
|
<div class="login">
|
||||||
<input
|
<input
|
||||||
class="login-input"
|
class="login-input"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user