add emphasis when hovering on order book line
This commit is contained in:
parent
35829735ef
commit
181d326f3a
|
@ -688,7 +688,7 @@ const OrderbookRow = React.memo<any>(
|
|||
side === 'buy' ? `bg-th-green-muted` : `bg-th-red-muted`
|
||||
}`}
|
||||
/>
|
||||
<div className="flex justify-between w-full">
|
||||
<div className="flex justify-between w-full hover:font-semibold">
|
||||
<div
|
||||
onClick={handlePriceClick}
|
||||
className={`z-10 text-xs leading-5 md:leading-6 text-th-fgd-1 md:pl-5 ${
|
||||
|
@ -712,7 +712,7 @@ const OrderbookRow = React.memo<any>(
|
|||
</>
|
||||
) : (
|
||||
<>
|
||||
<div className="flex justify-between w-full">
|
||||
<div className="flex justify-between w-full hover:font-semibold">
|
||||
<div
|
||||
className={`z-10 text-xs leading-5 md:leading-6 ${
|
||||
hasOpenOrder ? 'text-th-primary' : 'text-th-fgd-2'
|
||||
|
|
Loading…
Reference in New Issue