Skip to content

Commit

Permalink
refactor: 매수 배경 색 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
qwer0114 authored and qwer0114 committed Nov 28, 2024
1 parent 51cc7e1 commit 9a5cde0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function BidList({ bids, currentPrice, handleSelectPrice }: BidListProps) {
const maxSize = Math.max(...bids.map((bid) => bid.bid_size));

return (
<ul className="flex flex-col w-full">
<ul className="flex flex-col w-full bg-red-100 bg-opacity-10">
{bids.map((bid) => (
<li key={bid.bid_price} className="grid grid-cols-4 m-1">
<span></span>
Expand Down

0 comments on commit 9a5cde0

Please sign in to comment.