Skip to content

Commit

Permalink
tune down colors from the thumbs up and down icons a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
danilo-leal committed Jul 2, 2024
1 parent 6b467f9 commit 8bd947d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions docs/src/modules/components/AppLayoutDocsFooter.js
Original file line number Diff line number Diff line change
Expand Up @@ -407,16 +407,14 @@ export default function AppLayoutDocsFooter(props) {
<Tooltip title={t('feedbackYes')}>
<IconButton onClick={handleClickThumb(1)} aria-pressed={rating === 1}>
<ThumbUpAltRoundedIcon
color={rating === 1 ? 'primary' : undefined}
sx={{ fontSize: 15 }}
sx={{ fontSize: 15, color: rating === 1 ? 'primary' : 'text.secondary' }}
/>
</IconButton>
</Tooltip>
<Tooltip title={t('feedbackNo')}>
<IconButton onClick={handleClickThumb(0)} aria-pressed={rating === 0}>
<ThumbDownAltRoundedIcon
color={rating === 0 ? 'error' : undefined}
sx={{ fontSize: 15 }}
sx={{ fontSize: 15, color: rating === 0 ? 'error' : 'text.secondary' }}
/>
</IconButton>
</Tooltip>
Expand Down

0 comments on commit 8bd947d

Please sign in to comment.