Skip to content

Commit

Permalink
Updated Login.jsx page margins and button width
Browse files Browse the repository at this point in the history
  • Loading branch information
cp6 committed Oct 10, 2023
1 parent 89a3b45 commit 4f462a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/js/Pages/Auth/Login.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default function Login({ status, canResetPassword }) {
<InputError message={errors.email} className="mt-2" />
</div>

<div className="mt-4">
<div className="mt-6">
<InputLabel forInput="password" value="Password" />

<TextInput
Expand All @@ -69,7 +69,7 @@ export default function Login({ status, canResetPassword }) {

<InputError message={errors.password} className="mt-2" />
</div>
<div className="block mt-4">
<div className="block mt-6">
<label className="flex items-center">
<Checkbox name="remember" value={data.remember} handleChange={onHandleChange} />
<span className="ml-2 text-sm text-gray-600 dark:text-gray-300">Remember me</span>
Expand All @@ -86,7 +86,7 @@ export default function Login({ status, canResetPassword }) {
</Link>
)}

<PrimaryButton className="ml-4 px-8" processing={processing}>
<PrimaryButton className="ml-4 px-12" processing={processing}>
Log in
</PrimaryButton>
</div>
Expand Down

0 comments on commit 4f462a2

Please sign in to comment.