From cbc7a2f102ccfc03a4bff6820e8cde374ef1392a Mon Sep 17 00:00:00 2001 From: Kyle Pace <46023695+kpace622@users.noreply.github.com> Date: Tue, 18 Mar 2025 07:57:26 -0500 Subject: [PATCH 1/2] Update App.css --- src/App.css | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/src/App.css b/src/App.css index 629a3cc..796680c 100644 --- a/src/App.css +++ b/src/App.css @@ -5,30 +5,6 @@ body { font-family: 'Indie Flower', cursive; } -.recipe-container { - display: flex; - justify-content: space-between; - flex-wrap: wrap; -} - -.recipe { - border: 1px solid black; - background-color: white; - padding: 5px 30px; - margin: 20px; - display: flex; - flex-direction: column; - flex-wrap: wrap; - align-items: center; - justify-content: flex-end; - justify-content: space-between; - border-radius: 20px; - width: 20%; - text-align: center; - padding-bottom: 10px; - box-shadow: 4px 4px #bc6c25; -} - .recipe button{ width: 50%; background-color: #bc6c25; From 440391bca47145aeb50e053d0181a7ee96e9acde Mon Sep 17 00:00:00 2001 From: Kyle Pace <46023695+kpace622@users.noreply.github.com> Date: Tue, 18 Mar 2025 08:04:11 -0500 Subject: [PATCH 2/2] Update login.js --- src/auth/login.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/auth/login.js b/src/auth/login.js index b220566..fb414ef 100644 --- a/src/auth/login.js +++ b/src/auth/login.js @@ -24,7 +24,7 @@ function Login(props) { } const handleChange = e => { - setCredentials({...credentials, [e.target.name]: e.target.value}) + setCredentials(e.target.value) } return ( @@ -42,7 +42,7 @@ function Login(props) {