dev #81

Merged
root merged 5 commits from dev into main 2026-06-03 01:49:49 +03:00
Showing only changes of commit b7dface50c - Show all commits

View File

@@ -226,7 +226,7 @@ export function PartsPanel({ parts, vehicleId, categoryId, isLoading }: PartsPan
type="button"
disabled={isResolving}
onClick={() => goToReference(ref)}
className="inline-flex items-center gap-1 text-xs font-medium text-primary hover:underline disabled:opacity-60"
className="inline-flex items-center gap-1 text-sm font-semibold text-primary underline decoration-primary/50 underline-offset-2 hover:decoration-primary disabled:opacity-60"
title={
ref.categoryId
? `Tabloya git: ${ref.code}`
@@ -234,11 +234,11 @@ export function PartsPanel({ parts, vehicleId, categoryId, isLoading }: PartsPan
}
>
{isResolving ? (
<Loader2 className="size-3.5 shrink-0 animate-spin" />
<Loader2 className="size-4 shrink-0 animate-spin" />
) : (
<ArrowRight className="size-3.5 shrink-0" />
<ArrowRight className="size-4 shrink-0" />
)}
bk. tablo: {ref.code}
Tabloya git: {ref.code}
</button>
);
})}