1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

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.
This commit is contained in:
Mark Stacey 2020-04-02 00:06:27 -03:00 committed by GitHub
parent 4229892fca
commit 4efa6caec7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
.home {
&__container {
display: flex;
flex: 1 1 auto;
height: 100%;
}
&__main-view {