mirror of
https://github.com/we-promise/sure.git
synced 2026-04-19 03:54:08 +00:00
Extend privacy mode coverage to remaining financial views Transfers, trades, valuations, and holdings detail views were missing the privacy-sensitive class, leaving amounts visible when privacy mode was enabled. Also adds blur to the summary card partial (used by credit cards, loans, etc.), account chart balances, and time series chart containers (dashboard net worth and per-account charts).
9 lines
269 B
Plaintext
9 lines
269 B
Plaintext
<%# locals: (title:, content:) %>
|
|
|
|
<div class="rounded-xl bg-container shadow-xs border border-alpha-black-25 p-4">
|
|
<h4 class="text-secondary text-sm"><%= title %></h4>
|
|
<p class="text-xl font-medium text-primary privacy-sensitive">
|
|
<%= content %>
|
|
</p>
|
|
</div>
|