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 020c83b commit 51cc7e1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ type AskListProps = {
function AskList({ asks, currentPrice, handleSelectPrice }: AskListProps) {
const maxSize = Math.max(...asks.map((ask) => ask.ask_size));
return (
<ul className="flex flex-col w-full">
<ul className="flex flex-col w-full bg-blue-100 bg-opacity-10">
{asks.map((ask) => (
<li key={ask.ask_price} className="grid grid-cols-4 m-1">
<VolumeBar
Expand Down

0 comments on commit 51cc7e1

Please sign in to comment.