This commit is contained in:
arrelin
2026-01-23 22:00:09 +03:00
parent 3fabc762fd
commit 699b08628b
2 changed files with 20 additions and 2 deletions

View File

@@ -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;
}