fixed logo

This commit is contained in:
Jelaletdin12
2026-02-08 18:07:15 +05:00
parent 312b7c2ac3
commit 8d4f855486
12 changed files with 48 additions and 34 deletions

View File

@@ -111,10 +111,12 @@ export function ProductPurchaseCard({
variant="outline"
size="icon"
onClick={onQuantityIncrease}
disabled={isSyncing || localQuantity >= availableStock}
className={`rounded-[10px] h-12 w-12 border-2 border-gray-900 bg-gray-900 hover:bg-gray-800 transition-all duration-200 disabled:opacity-30 disabled:cursor-not-allowed ${
isSyncing ? "opacity-50" : ""
}`}
disabled={isSyncing}
className={`rounded-[10px] h-12 w-12 border-2 border-gray-900 bg-gray-900 hover:bg-gray-800 transition-all duration-200 ${
localQuantity >= availableStock
? "opacity-60 border-gray-200"
: ""
} ${isSyncing ? "opacity-50" : ""}`}
>
<Plus className="h-5 w-5 text-white" />
</Button>