Skip to content
Merged
2 changes: 1 addition & 1 deletion apps/sim/app/(auth)/auth-layout-client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import { useEffect } from 'react'
import AuthBackground from '@/app/(auth)/components/auth-background'
import Navbar from '@/app/(home)/components/navbar/navbar'
import Navbar from '@/app/(landing)/components/navbar/navbar'

export default function AuthLayoutClient({ children }: { children: React.ReactNode }) {
useEffect(() => {
Expand Down
4 changes: 2 additions & 2 deletions apps/sim/app/(auth)/components/social-login-buttons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export function SocialLoginButtons({
const githubButton = (
<Button
variant='outline'
className='w-full rounded-[10px]'
className='w-full rounded-sm border-[var(--landing-border-strong)] py-1.5 text-sm'
disabled={!githubAvailable || isGithubLoading}
onClick={signInWithGithub}
>
Expand All @@ -93,7 +93,7 @@ export function SocialLoginButtons({
const googleButton = (
<Button
variant='outline'
className='w-full rounded-[10px]'
className='w-full rounded-sm border-[var(--landing-border-strong)] py-1.5 text-sm'
disabled={!googleAvailable || isGoogleLoading}
onClick={signInWithGoogle}
>
Expand Down
4 changes: 3 additions & 1 deletion apps/sim/app/(auth)/components/sso-login-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ export function SSOLoginButton({
router.push(ssoUrl)
}

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

return (
<Button
Expand Down
2 changes: 1 addition & 1 deletion apps/sim/app/(auth)/components/status-page-layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { ReactNode } from 'react'
import AuthBackground from '@/app/(auth)/components/auth-background'
import Navbar from '@/app/(home)/components/navbar/navbar'
import Navbar from '@/app/(landing)/components/navbar/navbar'
import { SupportFooter } from './support-footer'

export interface StatusPageLayoutProps {
Expand Down
Loading
Loading