From 6866653032551916ea355f5c348f6eff5df3fba9 Mon Sep 17 00:00:00 2001 From: Andrew Kingston Date: Thu, 15 Oct 2020 16:37:50 +0100 Subject: [PATCH] Improve login component logo styles --- packages/standard-components/src/Login.svelte | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/packages/standard-components/src/Login.svelte b/packages/standard-components/src/Login.svelte index 42db74c02e..1ddefb3f28 100644 --- a/packages/standard-components/src/Login.svelte +++ b/packages/standard-components/src/Login.svelte @@ -91,16 +91,20 @@ .content { display: flex; flex-direction: column; - align-items: center; + align-items: stretch; justify-content: center; } .logo-container { margin-bottom: 10px; + display: flex; + flex-direction: row; + justify-content: center; + align-items: center; } .logo-container > img { - height: 80px; + max-height: 80px; max-width: 200px; margin-bottom: 20px; } @@ -137,7 +141,7 @@ .form-root { display: flex; flex-direction: column; - align-items: center; + align-items: stretch; width: 300px; } @@ -186,4 +190,8 @@ border-color: #393c44; color: #393c44; } + + h2 { + text-align: center; + }