diff --git a/frontend/src/components/ShoppingListModal.tsx b/frontend/src/components/ShoppingListModal.tsx index c2489c9..05822b4 100644 --- a/frontend/src/components/ShoppingListModal.tsx +++ b/frontend/src/components/ShoppingListModal.tsx @@ -302,7 +302,7 @@ export default function ShoppingListModal({ familyId, onClose }: ShoppingListMod {purchasedItems.map((item) => (
diff --git a/frontend/src/index.css b/frontend/src/index.css index 4028c63..9fd2083 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -191,6 +191,16 @@ border-color: rgba(139, 92, 246, 0.5); } +.shopping-purchased { + background-color: rgb(240, 253, 244); + border-color: rgb(187, 247, 208); +} + +[data-theme="dark"] .shopping-purchased { + background-color: rgba(34, 197, 94, 0.15); + border-color: rgba(34, 197, 94, 0.4); +} + .animate-fadeIn { animation: fadeIn 0.2s ease-in-out; }