From bd05ba9cc734e898babb6f635a1a68ae0e5f6d1f Mon Sep 17 00:00:00 2001 From: Florian Scholdei Date: Thu, 10 Oct 2019 14:31:55 +0200 Subject: [PATCH] Fix Loader with message below --- scm-ui/ui-components/src/Loading.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scm-ui/ui-components/src/Loading.js b/scm-ui/ui-components/src/Loading.js index 2ead83c153..f17a9b7fd8 100644 --- a/scm-ui/ui-components/src/Loading.js +++ b/scm-ui/ui-components/src/Loading.js @@ -10,12 +10,14 @@ type Props = { }; const Wrapper = styled.div` + flex-direction: column; align-items: center; justify-content: center; min-height: 256px; `; const FixedSizedImage = styled(Image)` + margin-bottom: 0.75rem; width: 128px; height: 128px; `;