use new scan icon
This commit is contained in:
parent
1687669149
commit
4c42c72411
4 changed files with 50 additions and 6 deletions
|
|
@ -146,7 +146,11 @@ angular.module('copayApp.controllers').controller('confirmController', function(
|
|||
fee: resp.fee,
|
||||
feePerKb: feePerKb,
|
||||
};
|
||||
|
||||
toAmount = parseFloat((resp.amount * satToUnit).toFixed(unitDecimals));
|
||||
txFormatService.formatAlternativeStr(resp.amount, function(v) {
|
||||
$scope.alternativeAmountStr = v;
|
||||
});
|
||||
|
||||
var msg = gettextCatalog.getString("{{fee}} will be deducted for bitcoin networking fees", {
|
||||
fee: txFormatService.formatAmount(resp.fee) + ' ' + unitName
|
||||
|
|
|
|||
|
|
@ -1,7 +1,23 @@
|
|||
#tab-send {
|
||||
@extend .deflash-blue;
|
||||
input {
|
||||
width: 100%;
|
||||
.input {
|
||||
input {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
&.item {
|
||||
height: 55px;
|
||||
}
|
||||
i {
|
||||
&.left {
|
||||
padding-left: 15px;
|
||||
}
|
||||
&.qr {
|
||||
cursor: pointer;
|
||||
cursor: hand;
|
||||
padding-right: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.qr-scan-icon {
|
||||
cursor: pointer;
|
||||
|
|
@ -10,7 +26,7 @@
|
|||
padding-left: 10px;
|
||||
}
|
||||
.qr-icon {
|
||||
line-height: 45px;
|
||||
line-height: 20px;
|
||||
}
|
||||
.zero-state-cta {
|
||||
padding-bottom: 3vh;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue