Skip to content

Commit 6711b59

Browse files
committed
fix: github sign in button in dark mode
1 parent 13022fb commit 6711b59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/postgres-new/components/sign-in-button.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ export default function SignInButton() {
55
const { signIn } = useApp()
66
return (
77
<button
8-
className="bg-black text-white text-lg px-4 py-2 rounded-sm flex gap-3 items-center"
8+
className="bg-foreground text-background text-md px-4 py-2 rounded-sm flex gap-3 items-center"
99
onClick={async () => {
1010
await signIn()
1111
}}
1212
>
13-
<GitHubIcon className="text-white text-2xl" />
13+
<GitHubIcon className="text-xl" />
1414
Sign in with GitHub
1515
</button>
1616
)

0 commit comments

Comments
 (0)