Matched amount formatting on Confirm screen, to previous formatting.

This commit is contained in:
Brendon Duncan 2018-06-15 10:14:21 +12:00
commit fffbda2458
3 changed files with 7 additions and 1 deletions

View file

@ -288,6 +288,8 @@ angular.module('copayApp.controllers').controller('confirmController', function(
tx.amountUnitStr = tx.amountStr.split(' ')[1];
txFormatService.formatAlternativeStr(wallet.coin, tx.toAmount, function(v) {
tx.alternativeAmountStr = v;
tx.alternativeAmountValueStr = tx.alternativeAmountStr.split(' ')[0];
tx.alternativeAmountUnitStr = tx.alternativeAmountStr.split(' ')[1];
});
}

View file

@ -43,6 +43,10 @@
}
.alternative {
font-size: 38px;
> .unit {
font-family: "Roboto-Light";
}
}
}
}