Skip to content

Commit

Permalink
Fix bid icon colors
Browse files Browse the repository at this point in the history
These colors were previously assumed but are now required.
  • Loading branch information
jonallured committed Mar 14, 2019
1 parent 858d51e commit ad97a3c
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,11 @@ export class ArtworkSidebarCurrentBidInfo extends React.Component<
>
{myBidPresent && (
<Box pt={0.5}>
{myBidWinning ? <WinningBidIcon /> : <LosingBidIcon />}
{myBidWinning ? (
<WinningBidIcon fill="green100" />
) : (
<LosingBidIcon fill="red100" />
)}
</Box>
)}
<Serif size="5t" weight="semibold" pl={0.5}>
Expand Down

0 comments on commit ad97a3c

Please sign in to comment.