mirror of
https://github.com/we-promise/sure.git
synced 2026-04-21 13:04:18 +00:00
* Fix category dark mode styles * Fix sidebar account tab states * Fix dashboard balance sheet group styles * Fix budget dark mode styles * Fix chart gradient split * Fix prose styles in dark mode * Add back chat nav id for tests
11 lines
398 B
Plaintext
11 lines
398 B
Plaintext
<%# locals: (weight:, color:) %>
|
|
|
|
<div class="w-full flex items-center justify-between gap-2">
|
|
<div class="flex gap-[3px]">
|
|
<% 10.times do |i| %>
|
|
<div class="w-0.5 h-2.5 rounded-lg <%= i < (weight / 10.0).ceil ? "" : "opacity-20" %>" style="background-color: <%= color %>;"></div>
|
|
<% end %>
|
|
</div>
|
|
<p class="text-sm"><%= number_to_percentage(weight, precision: 2) %></p>
|
|
</div>
|