Skip to content

Commit

Permalink
fix: button color
Browse files Browse the repository at this point in the history
  • Loading branch information
icfor committed Feb 26, 2024
1 parent e9c0634 commit 009c439
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/ui/src/components/footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,12 @@ const Footer: FC<{ className?: string }> = ({ className }) => {
<div>
<p className="footer__donate--excerpt">{t('common:donateExcerpt')}</p>
<a href={donateLink.url} target="_blank" rel="noreferrer">
<Button className="footer__donate-button" variant="contained" color="primary">
<Button
className="footer__donate-button"
variant="contained"
color="primary"
sx={{ color: '#000' }}
>
{t('common:donate')}
</Button>
</a>
Expand Down

0 comments on commit 009c439

Please sign in to comment.