diff options
| author | Sebastien Castiel <sebastien@castiel.me> | 2023-12-07 18:35:09 -0500 |
|---|---|---|
| committer | Sebastien Castiel <sebastien@castiel.me> | 2023-12-07 18:35:09 -0500 |
| commit | 4bc03002e17a0d128059c9d6d76c91ba7bac2e8f (patch) | |
| tree | 59687bb0e83a02f07121f8f34820fcbffb786ef6 /src/app/groups | |
| parent | 61201c28646ccb3be155b84b2a95cbc4502e51e4 (diff) | |
Dark mode
Diffstat (limited to 'src/app/groups')
| -rw-r--r-- | src/app/groups/[groupId]/balances-list.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/groups/[groupId]/balances-list.tsx b/src/app/groups/[groupId]/balances-list.tsx index 0e321bb..5e7b81b 100644 --- a/src/app/groups/[groupId]/balances-list.tsx +++ b/src/app/groups/[groupId]/balances-list.tsx @@ -35,8 +35,8 @@ export function BalancesList({ balances, participants, currency }: Props) { className={cn( 'absolute top-1 h-7 z-10', isLeft - ? 'bg-green-200 left-0 rounded-r-lg border border-green-300' - : 'bg-red-200 right-0 rounded-l-lg border border-red-300', + ? 'bg-green-200 dark:bg-green-800 left-0 rounded-r-lg border border-green-300 dark:border-green-700' + : 'bg-red-200 dark:bg-red-800 right-0 rounded-l-lg border border-red-300 dark:border-red-700', )} style={{ width: (Math.abs(balance) / maxBalance) * 100 + '%', |
