Skip to content

Commit dbdf75c

Browse files
justjuanguiclaude
andcommitted
feat(ui): Update Respec button with Soulstone icon
- Replace ⚡ emoji with Icon_Soulstone_Base sprite - Apply purple tint filter to icon - Reorder button elements: RESPEC → icon → 400 Thanks to monddoc for the suggestion! 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 7fedb4b commit dbdf75c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib/ui/FloatingControls.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<script lang="ts">
22
import { useConstellationEquipped } from "$lib/context/constellationequipped.svelte";
3+
import { spriteUrl } from "$lib/hellclock/utils";
34
45
let {
56
onRespec,
@@ -38,8 +39,8 @@
3839
onclick={onRespec}
3940
disabled={totalDevotionSpent === 0}
4041
>
41-
<span>⚡</span>
4242
<span>RESPEC</span>
43+
<img src={spriteUrl("Icon_Soulstone_Base")} alt="Soulstone" class="w-4 h-4" style="filter: brightness(0.5) sepia(1) hue-rotate(230deg) saturate(3);" />
4344
<span class="text-xs opacity-70">400</span>
4445
</button>
4546
{/if}

0 commit comments

Comments
 (0)