style: consistent button style

- modify add button to be consistent with main menu colours
This commit is contained in:
cv
2021-10-24 12:40:12 +02:00
parent d36adf08ba
commit abdd2606ee
@@ -7,9 +7,11 @@ export default function AddIconBtn(props) {
<IconButton
size={props.size || 'xs'}
icon={<FiPlus />}
colorScheme='blue'
onClick={clickhandler}
_expanded={{ bg: 'orange.300', color: 'white' }}
_focus={{ boxShadow: 'none' }}
backgroundColor={'orange.200'}
color={'orange.500'}
onClick={clickhandler}
{...rest}
/>
);