fix: Use primary indigo for Approve & Merge button instead of garish green

This commit is contained in:
Lukas May
2026-03-05 11:37:57 +01:00
parent 7e0749ef17
commit 79966cdf20

View File

@@ -206,11 +206,7 @@ export function ReviewHeader({
setShowConfirmation(true); setShowConfirmation(true);
}} }}
disabled={unresolvedCount > 0} disabled={unresolvedCount > 0}
className={ className="h-9 px-5 text-sm font-semibold shadow-sm"
unresolvedCount > 0
? "h-9 px-5 text-sm font-semibold"
: "bg-status-success-fg text-white hover:opacity-90 h-9 px-5 text-sm font-semibold shadow-sm"
}
> >
{unresolvedCount > 0 ? ( {unresolvedCount > 0 ? (
<> <>
@@ -260,7 +256,7 @@ export function ReviewHeader({
setShowConfirmation(false); setShowConfirmation(false);
onApprove(); onApprove();
}} }}
className="bg-status-success-fg text-white hover:opacity-90 h-8 px-4 text-xs font-semibold shadow-sm" className="h-8 px-4 text-xs font-semibold shadow-sm"
> >
<GitMerge className="h-3.5 w-3.5" /> <GitMerge className="h-3.5 w-3.5" />
Merge Now Merge Now