From 4efa6caec75f4af289ad6d2224fe5b2e18e90fa1 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Thu, 2 Apr 2020 00:06:27 -0300 Subject: [PATCH] Fix home container height (#8284) * Fix home container height The home container element's height was not set, so the lower half of the home component was showing as the wrong color when the user had no transactions or tokens. This was broken in #8271, which was a fix for a different CSS problem. Both problems should remain fixed now with height being set explicitly. * Remove obsolete `flex` rule This element is no longer within a flex container as of #8271, so this rule doesn't do anything. --- ui/app/pages/home/index.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/pages/home/index.scss b/ui/app/pages/home/index.scss index 7264d10ef..f11e4a861 100644 --- a/ui/app/pages/home/index.scss +++ b/ui/app/pages/home/index.scss @@ -1,7 +1,7 @@ .home { &__container { display: flex; - flex: 1 1 auto; + height: 100%; } &__main-view {