File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
apps/sim/app/(auth)/components Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff 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 >
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments