add emphasis when hovering on order book line

This commit is contained in:
Tyler Shipe 2022-02-01 20:02:47 -05:00
parent 35829735ef
commit 181d326f3a
1 changed files with 2 additions and 2 deletions

View File

@ -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'