Skip to content

Commit

Permalink
style: fix style changes on useremail
Browse files Browse the repository at this point in the history
  • Loading branch information
mihrab34 committed Jun 3, 2024
1 parent 44db82b commit 7ce971a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
14 changes: 5 additions & 9 deletions cubeseed_login/src/component/forms/UserEmail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const UserEmail: React.FC = () => {
}

return (
<div className=" m-auto flex flex-col justify-center align-middle sm:w-full md:w-3/6 ">
<div className=" m-auto flex flex-col justify-center p-4 align-middle sm:w-full md:w-1/2 ">
<h1 className="signup-text mb-4 mt-8 text-2xl">Sign up to Cubeseed</h1>
<div className="input-wrapper my-4">
<input
Expand All @@ -42,14 +42,10 @@ const UserEmail: React.FC = () => {
/>
{errors.email && <p className="text-red-500">{errors.email}</p>}
</div>
<div className="align-center my-auto flex justify-center">
<span className="line">
<hr />
</span>
<span>OR</span>
<span className="line">
<hr />
</span>
<div className="mb-2 flex items-center justify-center">
<span className=" w-full border-t border-solid border-gray-300"></span>
<span className="mx-2">OR</span>
<span className="w-full border-t border-solid border-gray-300"></span>
</div>
<div className="social-signin mb-2 flex justify-center gap-2 rounded-full border-2 border-solid p-1 align-bottom">
<FcGoogle />
Expand Down
2 changes: 1 addition & 1 deletion cubeseed_login/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function Home() {
<section>
<Navbar />
<section className="flex size-full flex-row">
<section className="m-auto size-full">
<section className="m-auto size-full min-h-screen">
<form onSubmit={handleSubmit}>
<ProgressBar index={currentIndex} length={steps} />
{step}
Expand Down

0 comments on commit 7ce971a

Please sign in to comment.