This commit is contained in:
Anthony 2021-07-17 18:52:36 +02:00 committed by jessopb
parent 77d2ab6a43
commit 6aea8e38bc

View file

@ -75,7 +75,7 @@ class CreditAmount extends React.PureComponent<Props> {
if (showLBC && !isFiat) {
amountText = <LbcSymbol postfix={amountText} size={size} />;
} else if (showLBC && isFiat) {
amountText = <p> ${(Math.round(Number(amountText) * 100) / 100).toFixed(2)}</p>;
amountText = <p style={{display: 'inline'}}> ${(Math.round(Number(amountText) * 100) / 100).toFixed(2)}</p>;
}
if (fee) {