From 5d52b84d506dd1b78c358f8427ef108e5398d76d Mon Sep 17 00:00:00 2001 From: marshall <99344331+marshall2112@users.noreply.github.com> Date: Thu, 9 Nov 2023 14:31:32 -0500 Subject: [PATCH] Tweak font size --- .../Pages/Core/DappPages/Dashboard/Metrics/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/dapp/src/components/Pages/Core/DappPages/Dashboard/Metrics/index.tsx b/apps/dapp/src/components/Pages/Core/DappPages/Dashboard/Metrics/index.tsx index 08ce733a1..cae49a19e 100644 --- a/apps/dapp/src/components/Pages/Core/DappPages/Dashboard/Metrics/index.tsx +++ b/apps/dapp/src/components/Pages/Core/DappPages/Dashboard/Metrics/index.tsx @@ -157,12 +157,12 @@ const MobileMetricsContainer = styled.div` `; const MetricValue = styled.div` - font-size: ${({ small }) => (small ? '0.9rem' : '1.8rem')}; + font-size: ${({ small }) => (small ? '1.1rem' : '1.8rem')}; color: ${({ theme }) => theme.palette.brandLight}; `; const MetricTitle = styled.div` - font-size: ${({ small }) => (small ? '0.9rem' : '1rem')}; + font-size: ${({ small }) => (small ? '1rem' : '1.1rem')}; color: ${({ theme }) => theme.palette.brand}; `;