Skip to content

Commit

Permalink
Change some text color from white to black
Browse files Browse the repository at this point in the history
  • Loading branch information
moiskillnadne committed Oct 26, 2024
1 parent 545a5db commit 776cd52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/feature/RegisterPasskeys/RegisterPasskeys.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const RegisterPasskeys = () => {

return (
<button
className="duration-300 bg-blue-500 text-white/50 rounded-full h-full hover:text-white/75"
className="duration-300 bg-blue-500 text-black/50 rounded-full h-full hover:text-black/75"
onClick={createChallenge}
>
Create passkey
Expand Down
2 changes: 1 addition & 1 deletion src/widget/Account/UserInfoPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const UserInfoPanel = (props: Props) => {

return (
<div className="flex flex-col items-center gap-[8px]">
<div className="text-white">Hello, {props.user?.email}</div>
<div className="">Hello, {props.user?.email}</div>

<div className="my-[12px]">
<RegisterPasskeys />
Expand Down

0 comments on commit 776cd52

Please sign in to comment.