Skip to content

Commit

Permalink
fixes singup page overflow issue (#1269)
Browse files Browse the repository at this point in the history
* fixes singup page overflow issue

* fixed singup page overflow issue

* fix: alignment issue

---------

Co-authored-by: narayan soni <[email protected]>
  • Loading branch information
love-sonkar and narayan954 authored Oct 6, 2023
1 parent e58aed5 commit d204587
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/pages/Login/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@
padding: 1.5rem;
}
.login__left {
margin-top: 10px;
margin-top: 20px;
padding: 0;
}
.form__top {
Expand Down
7 changes: 2 additions & 5 deletions src/pages/Signup/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@
}

.signup-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: 4em;
}

.img-outer .img-inner {
Expand Down Expand Up @@ -114,7 +111,7 @@

@media screen and (max-width: 720px) {
.signup-container {
margin-top: 4em;
margin-top: 0;
}
.pass-container-both {
flex-direction: column;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Signup/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ const SignupScreen = () => {
return (
<Auth_container>
<form aria-label="Sign Up Form">
<div className="form__bottom">
<div className="form__bottom signup-container">
{/* image input for the form */}
<Auth__image__input
address={address}
Expand Down

0 comments on commit d204587

Please sign in to comment.