fix css
This commit is contained in:
parent
77d2ab6a43
commit
6aea8e38bc
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue