Skip to content

Commit

Permalink
refactor: update line height and color of label in goal progress widget
Browse files Browse the repository at this point in the history
  • Loading branch information
jdghinson committed Dec 20, 2024
1 parent e2d031b commit cb31612
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,19 +72,23 @@ const GoalProgressChart = ({ value, goal }) => {
fontSize: '14px',
fontWeight: 400,
lineHeight: '20px',
marginBottom: '4px',
color: '1F2937',
}}>
{__('Goal')}
</div>
<div style={{
color: '#2D802F',
fontSize: '18px',
fontWeight: 600,
lineHeight: '20px',
marginBottom: '2px',
lineHeight: '28px',
}}>{currency.format(goal)}</div>
<div style={{
fontSize: '12px',
fontWeight: 400,
lineHeight: '18px',
color: '#4b5563',
}}>{__('Amount raised')}</div>
</div>
</div>
Expand Down

0 comments on commit cb31612

Please sign in to comment.