We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13022fb commit 6711b59Copy full SHA for 6711b59
apps/postgres-new/components/sign-in-button.tsx
@@ -5,12 +5,12 @@ export default function SignInButton() {
5
const { signIn } = useApp()
6
return (
7
<button
8
- className="bg-black text-white text-lg px-4 py-2 rounded-sm flex gap-3 items-center"
+ className="bg-foreground text-background text-md px-4 py-2 rounded-sm flex gap-3 items-center"
9
onClick={async () => {
10
await signIn()
11
}}
12
>
13
- <GitHubIcon className="text-white text-2xl" />
+ <GitHubIcon className="text-xl" />
14
Sign in with GitHub
15
</button>
16
)
0 commit comments