Skip to content
This repository has been archived by the owner on Jan 15, 2021. It is now read-only.

Commit

Permalink
Making buy price bold
Browse files Browse the repository at this point in the history
  • Loading branch information
Leandro Boscariol committed Jul 9, 2020
1 parent c79ab26 commit 74a13aa
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/components/OrdersWidget/OrderRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,11 @@ const OrderDetails: React.FC<OrderDetailsProps> = ({ buyToken, sellToken, order
return (
<td data-label="Price" className="showResponsive">
<div className="order-details">
{priceInverse} {displayTokenSymbolOrLink(buyToken)}
{'/'}
{displayTokenSymbolOrLink(sellToken)}
<strong>
{priceInverse} {displayTokenSymbolOrLink(buyToken)}
{'/'}
{displayTokenSymbolOrLink(sellToken)}
</strong>
<br />
{price} {displayTokenSymbolOrLink(sellToken)}
{'/'}
Expand Down

0 comments on commit 74a13aa

Please sign in to comment.