From a3ced1b5a6b7a9dbf49ea14656654e279d16118c Mon Sep 17 00:00:00 2001
From: HyaCinth <88471803+HyaCiovo@users.noreply.github.com>
Date: Thu, 17 Jul 2025 10:15:24 +0800
Subject: [PATCH] fix(signin): Improve login button UI (#22433) (#22514)
---
web/app/signin/components/social-auth.tsx | 4 ++--
web/app/signin/page.module.css | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/web/app/signin/components/social-auth.tsx b/web/app/signin/components/social-auth.tsx
index 283c650f2..dc4322454 100644
--- a/web/app/signin/components/social-auth.tsx
+++ b/web/app/signin/components/social-auth.tsx
@@ -35,7 +35,7 @@ export default function SocialAuth(props: SocialAuthProps) {
'mr-2 h-5 w-5',
)
} />
- {t('login.withGitHub')}
+ {t('login.withGitHub')}
>
@@ -53,7 +53,7 @@ export default function SocialAuth(props: SocialAuthProps) {
'mr-2 h-5 w-5',
)
} />
- {t('login.withGoogle')}
+ {t('login.withGoogle')}
>
diff --git a/web/app/signin/page.module.css b/web/app/signin/page.module.css
index eda396f76..72ce7fbd8 100644
--- a/web/app/signin/page.module.css
+++ b/web/app/signin/page.module.css
@@ -1,7 +1,7 @@
.githubIcon {
- background: center/contain url('./assets/github.svg');
+ background: center/contain url('./assets/github.svg') no-repeat;
}
.googleIcon {
- background: center/contain url('./assets/google.svg');
+ background: center/contain url('./assets/google.svg') no-repeat;
}