From feb133bc280e69fc9544be16c6952f7c4dbf86cd Mon Sep 17 00:00:00 2001 From: Michael Lange Date: Wed, 7 Nov 2018 16:08:05 -0800 Subject: [PATCH] Add support for link in error containers --- ui/app/styles/components/error-container.scss | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/ui/app/styles/components/error-container.scss b/ui/app/styles/components/error-container.scss index 298d7fe52..c1721b95b 100644 --- a/ui/app/styles/components/error-container.scss +++ b/ui/app/styles/components/error-container.scss @@ -3,7 +3,9 @@ height: 100%; padding-top: 25vh; display: flex; - justify-content: center; + flex-direction: column; + justify-content: start; + align-items: center; background: $grey-lighter; .error-message { @@ -19,4 +21,12 @@ border: 1px solid $grey-light; border-radius: $radius; } + + .error-links { + padding-top: 15px; + margin-top: 15px; + border-top: 1px solid $grey-light; + width: 600px; + text-align: center; + } }