Update bid button colors for better eye comfort

Adjusted the background color of the "Place Bid" buttons from dark gray (#900) to a lighter shade of gray (#600) for improved user interface aesthetics.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 069d4324-6c40-4355-955e-c714a50de1ea
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3df548ff-50ae-432f-9be4-25d34eccc983/069d4324-6c40-4355-955e-c714a50de1ea/yHCvWBg
This commit is contained in:
kimjaehyeon0101
2025-09-30 00:35:40 +00:00
parent 20afb2b76c
commit 5d097f83ee
2 changed files with 2 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -491,7 +491,7 @@ export default function Auctions() {
</div> </div>
<Button <Button
className="w-full bg-gray-900 hover:bg-gray-800 text-white" className="w-full bg-gray-600 hover:bg-gray-700 text-white"
onClick={() => handleBidClick(auction)} onClick={() => handleBidClick(auction)}
disabled={getTimeRemaining(auction.endDate) === "Ended"} disabled={getTimeRemaining(auction.endDate) === "Ended"}
data-testid={`button-bid-${auction.id}`} data-testid={`button-bid-${auction.id}`}
@ -574,7 +574,7 @@ export default function Auctions() {
<Button <Button
type="submit" type="submit"
disabled={bidMutation.isPending} disabled={bidMutation.isPending}
className="bg-gray-900 hover:bg-gray-800 text-white" className="bg-gray-600 hover:bg-gray-700 text-white"
data-testid="button-submit-bid" data-testid="button-submit-bid"
> >
{bidMutation.isPending ? "Placing Bid..." : "Place Bid"} {bidMutation.isPending ? "Placing Bid..." : "Place Bid"}