From 41bde559dfbd2998d5fc183b4cf2e588635fb919 Mon Sep 17 00:00:00 2001 From: evansmj Date: Fri, 20 Dec 2024 17:50:02 -0500 Subject: [PATCH] Fix dark/light mode colors --- .../src/components/bookkeeper/BkprRoot/BkprRoot.scss | 4 ++++ .../src/components/bookkeeper/BkprRoot/BkprRoot.tsx | 6 +++--- .../src/components/bookkeeper/BkprRoot/SatsFlowInfo.tsx | 2 +- .../src/components/bookkeeper/BkprRoot/VolumeInfo.tsx | 4 ++-- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/apps/frontend/src/components/bookkeeper/BkprRoot/BkprRoot.scss b/apps/frontend/src/components/bookkeeper/BkprRoot/BkprRoot.scss index c1194ff..b5c7496 100644 --- a/apps/frontend/src/components/bookkeeper/BkprRoot/BkprRoot.scss +++ b/apps/frontend/src/components/bookkeeper/BkprRoot/BkprRoot.scss @@ -1 +1,5 @@ @import '../../../styles/constants.scss'; + +.text-secondary { + color: $text-dark; +} diff --git a/apps/frontend/src/components/bookkeeper/BkprRoot/BkprRoot.tsx b/apps/frontend/src/components/bookkeeper/BkprRoot/BkprRoot.tsx index 00d27f2..a934e1e 100644 --- a/apps/frontend/src/components/bookkeeper/BkprRoot/BkprRoot.tsx +++ b/apps/frontend/src/components/bookkeeper/BkprRoot/BkprRoot.tsx @@ -32,15 +32,15 @@ function Bookkeeper() { Track channel and wallet balances over time.
4 - Total Number of Channels + Total Number of Channels
4,000,000 - Total Balance in Channels + Total Balance in Channels
4 - Total Balance in Wallet + Total Balance in Wallet
diff --git a/apps/frontend/src/components/bookkeeper/BkprRoot/SatsFlowInfo.tsx b/apps/frontend/src/components/bookkeeper/BkprRoot/SatsFlowInfo.tsx index fb9f2bd..8494be2 100644 --- a/apps/frontend/src/components/bookkeeper/BkprRoot/SatsFlowInfo.tsx +++ b/apps/frontend/src/components/bookkeeper/BkprRoot/SatsFlowInfo.tsx @@ -16,7 +16,7 @@ const SatsFlowInfo: React.FC = ({ label, value }) => { return (
- {label} + {label} {value}
); diff --git a/apps/frontend/src/components/bookkeeper/BkprRoot/VolumeInfo.tsx b/apps/frontend/src/components/bookkeeper/BkprRoot/VolumeInfo.tsx index db7d7e7..b6306b5 100644 --- a/apps/frontend/src/components/bookkeeper/BkprRoot/VolumeInfo.tsx +++ b/apps/frontend/src/components/bookkeeper/BkprRoot/VolumeInfo.tsx @@ -11,11 +11,11 @@ const VolumeInfo: React.FC = ({ bestRoutingChannel, worstRoutin return ( <>
- Channel w/Most Traffic + Channel w/Most Traffic {bestRoutingChannel}
- Channel w/Least Traffic + Channel w/Least Traffic {worstRoutingChannel}