Make dem button big

This commit is contained in:
Nate Kelley 2025-04-17 10:47:37 -06:00
parent 728a2cdc08
commit 53e45587f4
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
1 changed files with 5 additions and 0 deletions

View File

@ -218,6 +218,7 @@ const LoginOptions: React.FC<{
}}> }}>
<Button <Button
prefix={<Google />} prefix={<Google />}
size={'tall'}
onClick={() => { onClick={() => {
clearAllCookies(); clearAllCookies();
onSignInWithGoogle(); onSignInWithGoogle();
@ -228,6 +229,7 @@ const LoginOptions: React.FC<{
</Button> </Button>
<Button <Button
prefix={<Github />} prefix={<Github />}
size={'tall'}
onClick={() => { onClick={() => {
clearAllCookies(); clearAllCookies();
onSignInWithGithub(); onSignInWithGithub();
@ -238,6 +240,7 @@ const LoginOptions: React.FC<{
</Button> </Button>
<Button <Button
prefix={<Microsoft />} prefix={<Microsoft />}
size={'tall'}
onClick={() => { onClick={() => {
clearAllCookies(); clearAllCookies();
onSignInWithAzure(); onSignInWithAzure();
@ -307,6 +310,7 @@ const LoginOptions: React.FC<{
show={signUpFlow && disableSubmitButton && !!password} show={signUpFlow && disableSubmitButton && !!password}
placement="top"> placement="top">
<Button <Button
size={'tall'}
block={true} block={true}
type="submit" type="submit"
loading={loading === 'email'} loading={loading === 'email'}
@ -343,6 +347,7 @@ const SignUpSuccess: React.FC<{
<Button <Button
key="login" key="login"
variant="black" variant="black"
size={'tall'}
onClick={() => { onClick={() => {
setSignUpSuccess(false); setSignUpSuccess(false);
setSignUpFlow(true); setSignUpFlow(true);