2025-01-16 14:36:37 -05:00
|
|
|
<%# locals: (budget:) %>
|
|
|
|
|
|
|
|
<div class="flex flex-col gap-4 items-center justify-center h-full">
|
2025-04-30 18:14:22 -04:00
|
|
|
<%= icon "alert-triangle", size: "lg", color: "destructive" %>
|
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
|
|
|
|
2025-04-30 18:14:22 -04:00
|
|
|
<%= render LinkComponent.new(
|
|
|
|
text: "Fix allocations",
|
|
|
|
variant: "secondary",
|
|
|
|
size: "sm",
|
|
|
|
icon: "pencil",
|
|
|
|
icon_position: "right",
|
|
|
|
href: budget_budget_categories_path(budget)
|
|
|
|
) %>
|
2025-01-16 14:36:37 -05:00
|
|
|
</div>
|