mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 14:31:25 +00: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
16 lines
488 B
Plaintext
16 lines
488 B
Plaintext
<%# 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>
|