Skip to content

Commit 0c68007

Browse files
committed
improvement(auth): match oauth button styling with inputs and navbar login
1 parent bd5b823 commit 0c68007

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

apps/sim/app/(auth)/components/social-login-buttons.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export function SocialLoginButtons({
8181
const githubButton = (
8282
<Button
8383
variant='outline'
84-
className='w-full rounded-[10px]'
84+
className='w-full rounded-sm border-[var(--landing-border-strong)] py-1.5 text-sm'
8585
disabled={!githubAvailable || isGithubLoading}
8686
onClick={signInWithGithub}
8787
>
@@ -93,7 +93,7 @@ export function SocialLoginButtons({
9393
const googleButton = (
9494
<Button
9595
variant='outline'
96-
className='w-full rounded-[10px]'
96+
className='w-full rounded-sm border-[var(--landing-border-strong)] py-1.5 text-sm'
9797
disabled={!googleAvailable || isGoogleLoading}
9898
onClick={signInWithGoogle}
9999
>

apps/sim/app/(auth)/components/sso-login-button.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ export function SSOLoginButton({
2828
router.push(ssoUrl)
2929
}
3030

31-
const outlineBtnClasses = cn('w-full rounded-[10px]')
31+
const outlineBtnClasses = cn(
32+
'w-full rounded-sm border-[var(--landing-border-strong)] py-1.5 text-sm'
33+
)
3234

3335
return (
3436
<Button

0 commit comments

Comments
 (0)