diff --git a/apps/web/modules/ee/sso/components/open-id-button.tsx b/apps/web/modules/ee/sso/components/open-id-button.tsx index b34b13d53ba2..baf6dc418ea0 100644 --- a/apps/web/modules/ee/sso/components/open-id-button.tsx +++ b/apps/web/modules/ee/sso/components/open-id-button.tsx @@ -46,9 +46,9 @@ export const OpenIdButton = ({ type="button" onClick={handleLogin} variant="secondary" - className="relative w-full justify-center"> - {text ? text : t("auth.continue_with_openid")} - {lastUsed && {t("auth.last_used")}} + className="w-full items-center justify-center gap-2 px-2"> + {text || t("auth.continue_with_openid")} + {lastUsed && {t("auth.last_used")}} ); };