Allow fullscreen scrolling on mobile view, while retaining in-window scroll for laptop

This commit is contained in:
sdtsui 2017-08-11 00:42:09 -07:00
parent 0fab1b5482
commit f23d8c7393
1 changed files with 4 additions and 2 deletions

View File

@ -29,7 +29,10 @@ $wallet-view-bg: $wild-sand;
.wallet-view {
flex: 33.5 0 33.5%;
background: $wallet-view-bg;
overflow-y: scroll;
@media screen and (min-width: 576px) {
overflow-y: scroll;
}
}
.wallet-view-title-wrapper {
@ -129,7 +132,6 @@ $wallet-view-bg: $wild-sand;
.main-container {
margin-top: 35px;
width: 100%;
height: 100%;
}
button.btn-clear {