Merge pull request #1489 from cmgustavo/bug/03-ux

fixes position of balance on mobile
This commit is contained in:
Matias Alejo Garcia 2014-09-29 12:09:07 -03:00
commit dc54343735
2 changed files with 13 additions and 9 deletions

View file

@ -152,5 +152,10 @@
font-size: 14px;
}
.top-balance {
width: auto;
padding: 0 5px;
}
}

View file

@ -59,17 +59,16 @@
<section class="left-small">
<a class="left-off-canvas-toggle menu-icon" ><span></span></a>
</section>
<section class="right-small text-center top-balance">
<span ng-if="$root.updatingBalance">
<i class="fi-bitcoin-circle icon-rotate spinner"></i>
</span>
<span class="size-14" ng-if="!$root.updatingBalance">
{{totalBalance || 0|noFractionNumber}} {{$root.wallet.settings.unitName}}
</span>
</section>
<section class="middle tab-bar-section">
<h1 class="right">
<span ng-if="$root.updatingBalance">
<i class="fi-bitcoin-circle icon-rotate spinner"></i>
</span>
<span class="size-14" ng-if="!$root.updatingBalance">
{{totalBalance || 0|noFractionNumber}} {{$root.wallet.settings.unitName}}
</span>
</h1>
<h1 class="title ellipsis">
{{$root.wallet.getName()}}
</h1>