Skip to content

Commit

Permalink
fix: make auth email input text black (#462)
Browse files Browse the repository at this point in the history
it was white so it looked broken
  • Loading branch information
travis authored Mar 24, 2023
1 parent e62ad96 commit dc8ddca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/react/w3console/src/components/Authenticator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function AuthenticationForm (): JSX.Element {
</div>
<div>
<label className='block mb-2 uppercase text-xs font-semibold tracking-wider m-1 font-mono' htmlFor='authenticator-email'>Email</label>
<AuthCore.EmailInput className='block rounded-md p-2 w-80 bg-white shadow-md' id='authenticator-email' required />
<AuthCore.EmailInput className='block rounded-md p-2 w-80 bg-white text-black shadow-md' id='authenticator-email' required />
</div>
<button
className='mt-2 bg-white/0 w-full hover:bg-blue-800 rounded-md w-full text-sm font-medium py-2 px-8 transition-colors ease-in'
Expand Down

0 comments on commit dc8ddca

Please sign in to comment.