diff --git a/public/app/core/components/Login/LoginServiceButtons.tsx b/public/app/core/components/Login/LoginServiceButtons.tsx index a2d67b05749..0bdcba60226 100644 --- a/public/app/core/components/Login/LoginServiceButtons.tsx +++ b/public/app/core/components/Login/LoginServiceButtons.tsx @@ -149,24 +149,27 @@ export const LoginServiceButtons = () => { if (hasServices) { return ( - - - {Object.entries(enabledServices).map(([key, service]) => { - const serviceName = service.name; - return ( - - - Sign in with {{ serviceName }} - - ); - })} - + // TODO: Remove extra div when Stack supports width +
+ + + {Object.entries(enabledServices).map(([key, service]) => { + const serviceName = service.name; + return ( + + + Sign in with {{ serviceName }} + + ); + })} + +
); }