mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-07 14:35:23 +02:00
14 lines
576 B
Text
14 lines
576 B
Text
|
<%# locals: (budget:) %>
|
||
|
|
||
|
<div class="flex flex-col gap-4 items-center justify-center h-full">
|
||
|
<%= lucide_icon "alert-triangle", class: "w-6 h-6 text-red-500" %>
|
||
|
<p class="text-gray-500 text-sm text-center">You have over-allocated your budget. Please fix your allocations.</p>
|
||
|
|
||
|
<%= link_to budget_budget_categories_path(budget), class: "btn btn--secondary flex items-center gap-1" do %>
|
||
|
<span class="text-gray-900 font-medium">
|
||
|
Fix allocations
|
||
|
</span>
|
||
|
<%= lucide_icon "pencil", class: "w-4 h-4 text-gray-500 hover:text-gray-600" %>
|
||
|
<% end %>
|
||
|
</div>
|