Skip to content

Commit

Permalink
Update WeeklyShop.tsx
Browse files Browse the repository at this point in the history
Fix basket header for light mode
  • Loading branch information
JohnathanCrow authored Dec 12, 2024
1 parent fa534ca commit bd3413a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/WeeklyShop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export function WeeklyShop({
<div className="flex items-center justify-between mb-3">
<div className="flex items-center gap-2">

<h2 className="text-xl text-gray-100">Basket</h2>
<h2 className="text-xl text-gray-200">Basket</h2>
<span className="bg-blue-600 text-white px-2 py-1 rounded-full text-sm" role="status">
{weeklyItems.length}
</span>
Expand Down Expand Up @@ -150,4 +150,4 @@ export function WeeklyShop({
)}
</>
);
}
}

0 comments on commit bd3413a

Please sign in to comment.