Skip to content

Commit

Permalink
chng
Browse files Browse the repository at this point in the history
  • Loading branch information
AnWhiteM committed Jun 12, 2024
1 parent 7aa1c72 commit 54b1527
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Header/Header.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@

@media screen and (min-width: 1440px) {
.container {
max-width: 1440px;
min-width: 1440px;
margin-right: 0;
}
.headerLayout {
Expand Down
4 changes: 2 additions & 2 deletions src/components/LoginForm/LoginForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ export default function LoginForm() {
onSubmit={handleSubmit}
>
<Form className={css.form}>
<label htmlFor="email">Email</label>
<label htmlFor="email"/>
<Field
type="email"
name="email"
placeholder="Enter your email"
className={css.input}
required
/>
<label htmlFor="password">Password</label>
<label htmlFor="password"/>
<div>
<Field
type={showPassword ? "text" : "password"}
Expand Down

0 comments on commit 54b1527

Please sign in to comment.