set home container height to auto (#8577)

feature/default_network_editable
Brad Decker 5 years ago committed by GitHub
parent f9eb1440e4
commit f64106ce21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      ui/app/css/itcss/components/newui-sections.scss
  2. 2
      ui/app/pages/home/index.scss

@ -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);
}
}

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

Loading…
Cancel
Save