mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-08 06:55:21 +02:00
* Add geist font * Design system css file * Add cursor ui/ux rules * Add shadows and shadow borders * Replace primitives with tokens for common text and backgrounds * Organize css * Update switch and checkbox class names * Add back global color variables
19 lines
459 B
Text
19 lines
459 B
Text
<%# locals: (entry:) %>
|
|
|
|
<%= tag.header class: "mb-4 space-y-1", id: dom_id(entry, :header) do %>
|
|
<span class="text-secondary text-sm">
|
|
<%= t(".balance") %>
|
|
</span>
|
|
|
|
<div class="flex items-center gap-4">
|
|
<h3 class="font-medium">
|
|
<span class="text-2xl">
|
|
<%= format_money entry.amount_money %>
|
|
</span>
|
|
</h3>
|
|
</div>
|
|
|
|
<span class="text-sm text-secondary">
|
|
<%= I18n.l(entry.date, format: :long) %>
|
|
</span>
|
|
<% end %>
|