Login page: Fix button width (#86680)

* Fix login buttons width

* Login page: Fix button width

* Add todo
pull/86684/head
Alex Khomenko 2 years ago committed by GitHub
parent 7caa30bc2e
commit cad9e23e54
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      public/app/core/components/Login/LoginServiceButtons.tsx

@ -149,7 +149,9 @@ export const LoginServiceButtons = () => {
if (hasServices) {
return (
<Stack direction="column">
// TODO: Remove extra div when Stack supports width
<div style={{ width: '100%' }}>
<Stack direction={'column'}>
<LoginDivider />
{Object.entries(enabledServices).map(([key, service]) => {
const serviceName = service.name;
@ -167,6 +169,7 @@ export const LoginServiceButtons = () => {
);
})}
</Stack>
</div>
);
}

Loading…
Cancel
Save