1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00

set home container height to auto (#8577)

This commit is contained in:
Brad Decker 2020-05-13 11:12:34 -05:00 committed by GitHub
parent f9eb1440e4
commit f64106ce21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View File

@ -119,7 +119,8 @@ $wallet-view-bg: $alabaster;
.main-container {
width: 85vw;
height: 90vh;
margin-bottom: 10vh;
min-height: 90vh;
box-shadow: 0 0 7px 0 rgba(0, 0, 0, .08);
}
}
@ -127,7 +128,7 @@ $wallet-view-bg: $alabaster;
@media screen and (min-width: 769px) {
.main-container {
width: 80vw;
height: 82vh;
min-height: 82vh;
box-shadow: 0 0 7px 0 rgba(0, 0, 0, .08);
}
}
@ -135,7 +136,7 @@ $wallet-view-bg: $alabaster;
@media screen and (min-width: 1281px) {
.main-container {
width: 62vw;
height: 82vh;
min-height: 82vh;
box-shadow: 0 0 7px 0 rgba(0, 0, 0, .08);
}
}

View File

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