2025-01-16 14:36:37 -05:00
|
|
|
<%# 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" %>
|
2025-02-13 11:31:07 -05:00
|
|
|
<p class="text-secondary text-sm text-center">You have over-allocated your budget. Please fix your allocations.</p>
|
2025-01-16 14:36:37 -05:00
|
|
|
|
|
|
|
<%= link_to budget_budget_categories_path(budget), class: "btn btn--secondary flex items-center gap-1" do %>
|
2025-02-13 11:31:07 -05:00
|
|
|
<span class="text-primary font-medium">
|
2025-01-16 14:36:37 -05:00
|
|
|
Fix allocations
|
|
|
|
</span>
|
2025-02-13 11:31:07 -05:00
|
|
|
<%= lucide_icon "pencil", class: "w-4 h-4 text-secondary hover:text-gray-600" %>
|
2025-01-16 14:36:37 -05:00
|
|
|
<% end %>
|
|
|
|
</div>
|