mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-08 15:05:22 +02:00
* [claudesquad] update from 'component-namespacing' on 18 Jul 25 07:23 EDT * [claudesquad] update from 'component-namespacing' on 18 Jul 25 07:30 EDT * Update stimulus controller references to use namespace * Fix remaining tests
15 lines
488 B
Text
15 lines
488 B
Text
<%# locals: (budget:) %>
|
|
|
|
<div class="flex flex-col gap-4 items-center justify-center h-full">
|
|
<%= icon "alert-triangle", size: "lg", color: "destructive" %>
|
|
<p class="text-secondary text-sm text-center">You have over-allocated your budget. Please fix your allocations.</p>
|
|
|
|
<%= render DS::Link.new(
|
|
text: "Fix allocations",
|
|
variant: "secondary",
|
|
size: "sm",
|
|
icon: "pencil",
|
|
icon_position: "right",
|
|
href: budget_budget_categories_path(budget)
|
|
) %>
|
|
</div>
|