Skip to content

Commit

Permalink
fix: force correct answer color
Browse files Browse the repository at this point in the history
  • Loading branch information
drodil committed Jan 11, 2024
1 parent b42c3a6 commit 1f48626
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugins/qeta/src/components/QuestionPage/VoteButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,9 @@ export const VoteButtons = (props: {
: 'qetaCorrectAnswer'
}
style={{
color: correct ? theme.palette.success.main : undefined,
color: correct
? `${theme.palette.success.main} !important`
: undefined,
}}
/>
</IconButton>
Expand Down

0 comments on commit 1f48626

Please sign in to comment.