Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
1aerostorm committed Nov 10, 2023
1 parent 3c04866 commit c14d2ae
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/components/elements/nft/NFTTokenItem.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@ class NFTTokenItem extends Component {
}
last_price = <span title={tt('nft_tokens_jsx.selling_for') + price.floatString}>
{imageUrl && <img className='price-icon' src={imageUrl} alt={''} />}
{price.amountFloat}
<span style={{fontSize: price.amountFloat.length > 9 ? '90%' : '100%' }}>
{price.amountFloat}
</span>
</span>
}

Expand Down

0 comments on commit c14d2ae

Please sign in to comment.