Skip to content

Commit

Permalink
fix: Fix styles of login component
Browse files Browse the repository at this point in the history
  • Loading branch information
AlirezaYousefpourM committed Jan 14, 2025
1 parent b490a9b commit b5c80f3
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions frontend/src/pages/Signup/Signup.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -276,13 +276,17 @@ const LoginForm = ({ onSignUpClick }) => {
alignItems="center"
gap={2}
p={8}
style={{ backgroundColor: 'var(--background-color)', borderRadius: 20,}}
className="w-full md:w-1/2 xl:w-1/3"
style={{ backgroundColor: 'var(--background-color)', borderRadius: 20 }}
>
<Typography variant="h2" fontSize={45} style={{ textAlign: 'center' }}>
Login
</Typography>
<form onSubmit={handleFormSubmit}>
<FormControl>
<form
onSubmit={handleFormSubmit}
className="w-full"
>
<FormControl className="w-full">
<Toast
open={openToast}
setOpen={setOpenToast}
Expand Down

0 comments on commit b5c80f3

Please sign in to comment.