From abdd2606eea3a0cafebca543a5c27068edb16b5f Mon Sep 17 00:00:00 2001 From: cv <34649812+cpvalente@users.noreply.github.com> Date: Sun, 24 Oct 2021 12:40:12 +0200 Subject: [PATCH] style: consistent button style - modify add button to be consistent with main menu colours --- client/src/common/components/buttons/AddIconBtn.jsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/client/src/common/components/buttons/AddIconBtn.jsx b/client/src/common/components/buttons/AddIconBtn.jsx index 9133a1a7b..59153d97c 100644 --- a/client/src/common/components/buttons/AddIconBtn.jsx +++ b/client/src/common/components/buttons/AddIconBtn.jsx @@ -7,9 +7,11 @@ export default function AddIconBtn(props) { } - colorScheme='blue' - onClick={clickhandler} + _expanded={{ bg: 'orange.300', color: 'white' }} _focus={{ boxShadow: 'none' }} + backgroundColor={'orange.200'} + color={'orange.500'} + onClick={clickhandler} {...rest} /> );