From 9f78bd1cf60cc52d0d6ca5d43d74bd1fd4a7bf8e Mon Sep 17 00:00:00 2001 From: Chris Van Emmerik Date: Mon, 25 Nov 2024 20:27:22 -0700 Subject: [PATCH] [MultiAnswerButtons] Update to match. Change Done -> Next. --- src/components/pwa/MultiAnswerButtons.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/pwa/MultiAnswerButtons.tsx b/src/components/pwa/MultiAnswerButtons.tsx index 3375967..d22ccec 100644 --- a/src/components/pwa/MultiAnswerButtons.tsx +++ b/src/components/pwa/MultiAnswerButtons.tsx @@ -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} @@ -50,7 +50,7 @@ const MultiAnswerButtons = ({ value = [], onChange, onNext, options = [] }) => { sx={{ fontSize: 24, minHeight: 64 }} endIcon={} > - Done + Next