Skip to content

Commit

Permalink
login link style
Browse files Browse the repository at this point in the history
  • Loading branch information
ozziexsh committed Feb 20, 2023
1 parent c605b44 commit b02db76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export default class Install extends Command {

fs.writeFileSync(
path,
contents.toString().replace(/\sdark:[^\s"']+/g, '')
contents.toString().replace(/\sdark:[^\s"']+/g, ''),
);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/stubs/resources/js/Pages/Auth/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default function Login({ canResetPassword, status }: Props) {
<div className="flex items-center justify-end">
<Link
href={route('register')}
className="underline text-sm text-gray-600 hover:text-gray-900"
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"
>
Need an account?
</Link>
Expand Down

0 comments on commit b02db76

Please sign in to comment.