Skip to content

Commit

Permalink
[MultiAnswerButtons] Update to match. Change Done -> Next.
Browse files Browse the repository at this point in the history
  • Loading branch information
cvanem committed Nov 26, 2024
1 parent 1c5053f commit 9f78bd1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/pwa/MultiAnswerButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ const MultiAnswerButtons = ({ value = [], onChange, onNext, options = [] }) => {
onClick={handleClick(o)}
size='large'
fullWidth
color={isSelected ? 'success' : 'secondary'}
sx={{ fontSize: 24, minHeight: 64 }}
color='primary'
sx={{ fontSize: 24, minHeight: 64, backgroundColor: isSelected ? 'primary.dark' : 'primary.main' }}
>
{!isEmpty(o?.label) ? o.label : o}
</Button>
Expand All @@ -50,7 +50,7 @@ const MultiAnswerButtons = ({ value = [], onChange, onNext, options = [] }) => {
sx={{ fontSize: 24, minHeight: 64 }}
endIcon={<Icons.ArrowForward />}
>
Done
Next
</Button>
</Grid>
</Grid>
Expand Down

0 comments on commit 9f78bd1

Please sign in to comment.