diff --git a/client/assets/styles/styles.css b/client/assets/styles/styles.css index 6556388a..6de34130 100644 --- a/client/assets/styles/styles.css +++ b/client/assets/styles/styles.css @@ -405,6 +405,10 @@ header { justify-content: center; } +.spawn-btn.menu-construct:hover { + border: 1px solid whitesmoke; +} + .spawn-btn input { flex: 1 1 100%; width: 100%; @@ -430,7 +434,7 @@ header { flex: 1; } -.menu-intances .menu-construct { +.menu-instances .menu-construct { flex: 1 0 33%; } diff --git a/client/src/components/login.jsx b/client/src/components/login.jsx index f2f32bca..7fe18d61 100644 --- a/client/src/components/login.jsx +++ b/client/src/components/login.jsx @@ -30,7 +30,6 @@ class Login extends Component { } nameInput(event) { - console.log(event.target.value); this.setState({ name: event.target.value }); } @@ -61,12 +60,14 @@ class Login extends Component { class="login-input" type="email" placeholder="username" + value={this.state.name} onInput={this.nameInput} />