fix+feat: fix invisible result values, inline symbol into label

Fix: .result-value was using color: var(--pico-color) which broke when
our custom palette variables weren't in scope. Now inherits body color —
Pico handles light/dark correctly without us needing to re-assert it.

Feat: unit symbol merged inline into label as 'Blurbs (bl)', replacing
the separate third line. Removes .result-symbol CSS rule. Cards are
shorter and less cluttered.
This commit is contained in:
Falkan
2026-03-17 11:00:38 -04:00
parent 062850280c
commit 510e61a553
2 changed files with 5 additions and 8 deletions

View File

@@ -57,6 +57,5 @@
aria-pressed={highlighted}
>
<span class="result-value">{formattedValue}</span>
<span class="result-label">{unit.labelPlural}</span>
<span class="result-symbol">{unit.symbol}</span>
<span class="result-label">{unit.labelPlural} ({unit.symbol})</span>
</div>