This commit is contained in:
2026-04-27 11:24:04 +02:00
parent 8267b32c39
commit d70fac4f49

View File

@@ -73,7 +73,7 @@
{#each products as product}
<button class="card" on:click={() => addTally(product.id, product.name)}>
<div style="font-size: 2.5rem;">{getIcon(product.iconPlaceholder)}</div>
<h3>{product.name}</h3>
<h3 style="color: var(--color-primary);">{product.name}</h3>
<span class="subtitle price">{formatPrice(product.priceCents)}</span>
</button>
{/each}