Skip to content

Commit b02db76

Browse files
committed
login link style
1 parent c605b44 commit b02db76

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/commands/install.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ export default class Install extends Command {
202202

203203
fs.writeFileSync(
204204
path,
205-
contents.toString().replace(/\sdark:[^\s"']+/g, '')
205+
contents.toString().replace(/\sdark:[^\s"']+/g, ''),
206206
);
207207
}
208208
}

src/stubs/resources/js/Pages/Auth/Login.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export default function Login({ canResetPassword, status }: Props) {
9898
<div className="flex items-center justify-end">
9999
<Link
100100
href={route('register')}
101-
className="underline text-sm text-gray-600 hover:text-gray-900"
101+
className="underline text-sm text-gray-600 dark:text-gray-400 hover:text-gray-900 dark:hover:text-gray-100 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 dark:focus:ring-offset-gray-800"
102102
>
103103
Need an account?
104104
</Link>

0 commit comments

Comments
 (0)