From 76223b04e918f78044a662268f58d995a00753d7 Mon Sep 17 00:00:00 2001 From: Moritz Date: Tue, 24 Feb 2026 11:17:45 +0100 Subject: [PATCH] style: use btn-outline for all cycle status action buttons Make Paid, Suspended and Unpaid buttons consistent by applying btn-outline to all three, matching the outlined style pattern. --- lib/mv_web/live/member_live/show/membership_fees_component.ex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/mv_web/live/member_live/show/membership_fees_component.ex b/lib/mv_web/live/member_live/show/membership_fees_component.ex index f6aa21d..7712085 100644 --- a/lib/mv_web/live/member_live/show/membership_fees_component.ex +++ b/lib/mv_web/live/member_live/show/membership_fees_component.ex @@ -224,7 +224,7 @@ defmodule MvWeb.MemberLive.Show.MembershipFeesComponent do phx-value-cycle_id={cycle.id} phx-value-status="paid" phx-target={@myself} - class="join-item btn btn-sm btn-success" + class="join-item btn btn-sm btn-outline btn-success" title={gettext("Mark as paid")} > <.icon name="hero-check-circle" class="size-4" /> @@ -250,7 +250,7 @@ defmodule MvWeb.MemberLive.Show.MembershipFeesComponent do phx-value-cycle_id={cycle.id} phx-value-status="unpaid" phx-target={@myself} - class="join-item btn btn-sm btn-error" + class="join-item btn btn-sm btn-outline btn-error" title={gettext("Mark as unpaid")} > <.icon name="hero-x-circle" class="size-4" />