Skip to content

Commit

Permalink
Tweak font size
Browse files Browse the repository at this point in the history
  • Loading branch information
marshall2112 committed Nov 9, 2023
1 parent 0cee094 commit 5d52b84
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,12 +157,12 @@ const MobileMetricsContainer = styled.div<MetricProps>`
`;

const MetricValue = styled.div<MetricProps>`
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<MetricProps>`
font-size: ${({ small }) => (small ? '0.9rem' : '1rem')};
font-size: ${({ small }) => (small ? '1rem' : '1.1rem')};
color: ${({ theme }) => theme.palette.brand};
`;

Expand Down

0 comments on commit 5d52b84

Please sign in to comment.