diff options
author | mat <github@matdoes.dev> | 2022-05-18 22:31:51 -0500 |
---|---|---|
committer | mat <github@matdoes.dev> | 2022-05-18 22:31:51 -0500 |
commit | 48c48ecd6c349f0e0d7649b7b606b994875d1acf (patch) | |
tree | 2ae29f7ead2458fbfe6b9ed1da411e7a54cb6a53 /src | |
parent | 9b714fe39c83794538e0b38a63afd2bf39664c2f (diff) | |
download | skyblock-stats-48c48ecd6c349f0e0d7649b7b606b994875d1acf.tar.gz skyblock-stats-48c48ecd6c349f0e0d7649b7b606b994875d1acf.tar.bz2 skyblock-stats-48c48ecd6c349f0e0d7649b7b606b994875d1acf.zip |
Tweak auction graph point color
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/AuctionPriceScatterplot.svelte | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/AuctionPriceScatterplot.svelte b/src/lib/AuctionPriceScatterplot.svelte index 6c59e70..d8946fe 100644 --- a/src/lib/AuctionPriceScatterplot.svelte +++ b/src/lib/AuctionPriceScatterplot.svelte @@ -112,14 +112,14 @@ bind:this={svgEl} /> - {#each item.auctions as auction (auction.id)} + {#each item.auctions as auction} {@const [x, y] = getAuctionCoordinates(auction)} <circle cx={x} cy={y} r="1" stroke-width="4" - fill={auction.bin ? '#11b' : '#1b1'} + fill={auction.bin ? '#46e' : '#1b1'} class="auction-point-{auction.id}" /> <!-- class:selected-auction={currentlyPreviewedAuction?.auction?.id === auction?.id} --> |