Skip to content

Commit 2a23308

Browse files
committed
style: Update button component in AuthModal for consistent size and styling
1 parent 4511c82 commit 2a23308

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

src/features/auth/components/AuthModal.tsx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,18 @@ export const AuthModal = ({ showAuth }: AuthModalProps) => {
7070
</button>
7171
</div>
7272
<div className="buttons">
73-
<Button startIcon={<FaGithub />} onClick={() => signIn(githubAuthProvider)} size="large">
73+
<Button
74+
startIcon={<FaGithub style={{ fontSize: '1.6em' }} />}
75+
onClick={() => signIn(githubAuthProvider)}
76+
className="blockHeaderWhite"
77+
size="medium">
7478
Connect with Github
7579
</Button>
7680

77-
<Button startIcon={<FcGoogle />} onClick={() => signIn(googleAuthProvider)} size="large">
81+
<Button
82+
startIcon={<FcGoogle style={{ fontSize: '1.6em' }} />}
83+
onClick={() => signIn(googleAuthProvider)}
84+
size="medium">
7885
Connect with Google
7986
</Button>
8087
</div>

0 commit comments

Comments
 (0)