Merge 'release' into 'master' #2195
2 changed files with 4 additions and 1 deletions
src/renderer
|
@ -16,7 +16,9 @@ const WalletBalance = (props: Props) => {
|
|||
</header>
|
||||
|
||||
<div className="card__content">
|
||||
{(balance || balance === 0) && <CreditAmount large amount={balance} precision={8} />}
|
||||
{(balance || balance === 0) && (
|
||||
<CreditAmount badge={false} large amount={balance} precision={8} />
|
||||
)}
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
|
|
|
@ -38,6 +38,7 @@
|
|||
}
|
||||
|
||||
.badge--large {
|
||||
font-weight: 600;
|
||||
font-size: 3.5rem;
|
||||
line-height: 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue