Skip to content

Commit

Permalink
Merge pull request #621 from captain-Akshay/master
Browse files Browse the repository at this point in the history
feat(components): feedback default colour for both mode
  • Loading branch information
leecalcote authored May 17, 2024
2 parents 3ed7f91 + f326e77 commit 770fb15
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/custom/Feedback/style.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import {} from '../../constants/constants';
import {
BLACK,
BUTTON_MODAL,
BUTTON_MODAL_DARK,
CARIBBEAN_GREEN,
CHINESE_SILVER,
CULTURED,
Expand Down Expand Up @@ -151,7 +150,7 @@ export const FeedbackSubmitButton = styled(Button)<SubmitProp>(({ isOpen }) => (
}));

export const FeedbackButton = styled(Button)<RenderPositionType>(({ theme, renderPosition }) => ({
backgroundColor: theme.palette.mode === 'dark' ? BUTTON_MODAL_DARK : BUTTON_MODAL,
backgroundColor: BUTTON_MODAL,
color: CULTURED,
borderRadius: '5px',
padding: '10px 20px',
Expand Down

0 comments on commit 770fb15

Please sign in to comment.