diff --git a/frontend/src/index.css b/frontend/src/index.css index 9fd2083..619d3fb 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -201,6 +201,24 @@ border-color: rgba(34, 197, 94, 0.4); } +.expense-history-item { + background-color: rgb(255, 255, 255); + border-color: rgb(229, 231, 235); +} + +[data-theme="dark"] .expense-history-item { + background-color: rgba(55, 55, 55, 0.6); + border-color: rgba(75, 75, 75, 0.8); +} + +.expense-description { + background-color: rgb(249, 250, 251); +} + +[data-theme="dark"] .expense-description { + background-color: rgba(40, 40, 40, 0.8); +} + .animate-fadeIn { animation: fadeIn 0.2s ease-in-out; } diff --git a/frontend/src/pages/FamilyView.tsx b/frontend/src/pages/FamilyView.tsx index ece86de..3f366bf 100644 --- a/frontend/src/pages/FamilyView.tsx +++ b/frontend/src/pages/FamilyView.tsx @@ -428,7 +428,7 @@ export default function FamilyView() { {categoryExpenses.map((expense) => (