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