account for status bar

This commit is contained in:
Marty Alcala 2016-11-10 14:26:22 -05:00
parent 523f3e9303
commit fbc2010f7e
2 changed files with 11 additions and 0 deletions

View File

@ -91,6 +91,14 @@
#walletDetails {
background: #F8F8F9;
.bp-content {
position: relative;
height: 100%;
&.status-bar {
margin-top: 20px;
}
}
.bar-header {
border: 0;
background: none;

View File

@ -1,4 +1,5 @@
<ion-view id="walletDetails">
<ion-nav-bar ng-style="{'background-color': wallet.color}">
<ion-nav-title>{{wallet.name}}</ion-nav-title>
<ion-nav-back-button>
@ -10,6 +11,7 @@
</ion-nav-buttons>
</ion-nav-bar>
<div class="bp-content" ng-class="{'status-bar': isCordova}">
<div class="amount-wrapper" ng-show="wallet && wallet.isComplete()" ng-style="{'background-color':wallet.color}">
<div
@ -322,4 +324,5 @@
distance="1%">
</ion-infinite-scroll>
</ion-content>
</div>
</ion-view>