Skip to content

Commit

Permalink
Merge pull request #234 from tchryssos/tc-218-add-equipment-constrast
Browse files Browse the repository at this point in the history
fixing add another button color
  • Loading branch information
tchryssos authored Jun 6, 2024
2 parents c2c405e + a896aeb commit 14fa42c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/form/AddAnotherButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ import { Label } from './Label';

const StyledButton = styled(TextButton)`
border: ${({ theme }) =>
`${theme.borderWidth[1]} dashed ${theme.colors.accentLight}`};
`${theme.borderWidth[1]} dashed ${theme.colors.textAccent}`};
height: ${({ theme }) => theme.spacing[40]};
width: 100%;
background-color: ${({ theme }) => theme.colors.accentLight};
:hover {
background-color: ${({ theme }) => theme.colors.smudge};
}
Expand Down

0 comments on commit 14fa42c

Please sign in to comment.