Build [v1.14.28]

This commit is contained in:
2026-04-25 12:43:41 +03:00
parent 5393b237de
commit 8dc8b7da9f
15 changed files with 227 additions and 213 deletions

View File

@@ -56,14 +56,14 @@ export default function QuantityAdjustmentModal({
return (
<div className={`fixed inset-0 z-50 bg-black/50 flex items-center justify-center transition-opacity ${isClosing ? 'opacity-0' : 'opacity-100'}`}>
<div className={`bg-slate-950 rounded-lg shadow-lg w-full max-w-md mx-4 transition-transform ${isClosing ? 'scale-95' : 'scale-100'}`}>
<div className={`bg-surface border border-border w-full max-w-md mx-4 transition-transform ${isClosing ? 'scale-95' : 'scale-100'}`}>
{/* Header */}
<div className="flex items-center justify-between p-4 border-b border-slate-800">
<h2 className="text-lg font-normal">Adjust quantity</h2>
<div className="flex items-center justify-between p-4 border-b border-border">
<h2 className="text-lg font-normal">Adjust Quantity</h2>
<button
onClick={handleClose}
aria-label="Close quantity adjustment modal"
className="p-2 hover:bg-slate-800 rounded-lg transition-colors"
className="p-2 hover:bg-black border border-transparent hover:border-border transition-colors"
>
<X size={20} className="text-slate-400" />
</button>
@@ -91,7 +91,7 @@ export default function QuantityAdjustmentModal({
{/* Success Message */}
{successMessage && (
<div className="p-3 bg-green-500/10 border border-green-500/20 rounded-lg text-green-500 text-sm">
<div className="status-success text-sm">
{successMessage}
</div>
)}
@@ -99,7 +99,7 @@ export default function QuantityAdjustmentModal({
{/* Quantity Adjustment */}
<div>
<label className="text-sm font-normal text-slate-400 mb-3 block">
Current quantity
Current Quantity
</label>
<QuantityDisplay
itemId={String(item.id)}
@@ -112,7 +112,7 @@ export default function QuantityAdjustmentModal({
<div className="flex gap-2 pt-2">
<button
onClick={handleClose}
className="flex-1 px-4 py-2 bg-slate-800 hover:bg-slate-700 text-slate-100 rounded-lg font-normal transition-colors"
className="btn-secondary flex-1"
>
Keep Current Quantity
</button>