From e7f0c6f83426a9b3f96a1300dd6ea7d25f42eaff Mon Sep 17 00:00:00 2001 From: ntr Date: Mon, 10 Jun 2019 14:06:35 +1000 Subject: [PATCH] fix arrows --- client/assets/styles/styles.css | 6 +++++- client/src/components/login.jsx | 3 ++- client/src/components/svgs/triangle.jsx | 6 +++--- 3 files changed, 10 insertions(+), 5 deletions(-) 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} />