From f45a1f807f3f230529a6f44d0e545e8cda150a3c Mon Sep 17 00:00:00 2001 From: chris Date: Sat, 9 May 2026 22:07:12 -0400 Subject: [PATCH] fix: make product image rounded corners visible border-radius was already set but invisible (white image on white background). Changing the image background to a warm off-white makes the 12px rounded corners show against the surrounding area. Co-Authored-By: Claude Sonnet 4.6 --- estore/src/app/globals.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/estore/src/app/globals.css b/estore/src/app/globals.css index d56679b..2d111b0 100644 --- a/estore/src/app/globals.css +++ b/estore/src/app/globals.css @@ -56,8 +56,8 @@ width: 100%; height: 220px; display: block; - background: #fff; - border-radius: 10px; + background: #fdf6ee; + border-radius: 12px; } .product-card .no-image {