style: remove dynamic color coding from stock column to match table styling
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 2m26s

This commit is contained in:
Cauê Faleiros
2026-05-25 11:35:15 -03:00
parent c47a64d831
commit 1f8baabf69

View File

@@ -159,7 +159,7 @@ const Products = () => {
</div> </div>
</td> </td>
<td className="px-6 py-2.5"> <td className="px-6 py-2.5">
<span className={`font-bold ${product.stock > 10 ? 'text-emerald-500' : product.stock > 0 ? 'text-amber-500' : 'text-red-500'}`}> <span className="font-bold text-zinc-900 dark:text-dark-text">
{product.stock} un. {product.stock} un.
</span> </span>
</td> </td>