Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions client/src/components/Styles/loginSignup.css
Original file line number Diff line number Diff line change
Expand Up @@ -161,17 +161,20 @@ Login and Signup page style rules

.signup-form-inputs,
.login-form-inputs {
/* border: 1px solid black; */
width: 100%;
max-width: 320px;
max-height: 340px;
height: auto;
margin: 20px auto;
margin: 15px auto 20px auto; /* accounts for error message padding -- looks more centered */
gap: 15px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: stretch;
align-items: center;

#googleBtn {
align-self: stretch;
}
}

.signup-form p {
Expand Down
1 change: 0 additions & 1 deletion client/src/components/pages/Signup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,6 @@ const SignUp: React.FC<SignUpProps> = ({ /*setAvatarImage, avatarImage,*/ profil
/> */}

<div id="googleBtn"></div>
<span className="spacer"> </span>
{/* <input
className="signup-input"
autoComplete="off"
Expand Down
Loading