diff options
author | mat <github@matdoes.dev> | 2022-05-17 18:50:49 +0000 |
---|---|---|
committer | mat <github@matdoes.dev> | 2022-05-17 18:50:49 +0000 |
commit | f9bb90cab81e7c7f8c2a7e932bbf2ddbf7b51f1f (patch) | |
tree | bc8d05a884632dcd64f6a76a40dc6174e7549d56 /src/lib/AuctionPreviewTooltip.svelte | |
parent | b6d23f4334eae873e7d32a4d5bb5f8b3a1a67ce5 (diff) | |
download | skyblock-stats-f9bb90cab81e7c7f8c2a7e932bbf2ddbf7b51f1f.tar.gz skyblock-stats-f9bb90cab81e7c7f8c2a7e932bbf2ddbf7b51f1f.tar.bz2 skyblock-stats-f9bb90cab81e7c7f8c2a7e932bbf2ddbf7b51f1f.zip |
auction search and fixes
Diffstat (limited to 'src/lib/AuctionPreviewTooltip.svelte')
-rw-r--r-- | src/lib/AuctionPreviewTooltip.svelte | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/AuctionPreviewTooltip.svelte b/src/lib/AuctionPreviewTooltip.svelte index 223cec2..417f8b3 100644 --- a/src/lib/AuctionPreviewTooltip.svelte +++ b/src/lib/AuctionPreviewTooltip.svelte @@ -5,7 +5,7 @@ import type { PreviewedAuctionData } from './utils' export let preview: PreviewedAuctionData | null - export let lastPreview: PreviewedAuctionData | null + let lastPreview: PreviewedAuctionData | null $: lastPreview = preview ?? lastPreview @@ -36,7 +36,7 @@ #auction-preview-tooltip { position: absolute; border: 1px solid rgba(255, 255, 255, 0.1); - background: var(--theme-lighter-background); + background: rgba(0, 0, 0, 0.1); padding: 0.5em; transition: left 200ms, top 200ms; pointer-events: none; |