Skip to content

Commit

Permalink
eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
me-liu committed Dec 8, 2024
1 parent 4c1b432 commit 3383127
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/onboarding/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ export const Button = styled.button<{ disabled?: boolean }>`
width: 30%;
height: 2.75rem;
background-color: ${({ disabled }) =>
disabled ? COLORS.pomegranate10 : COLORS.pomegranate};
disabled ? COLORS.pomegranate10 : COLORS.pomegranate12};
border-color: ${({ disabled }) =>
disabled ? COLORS.pomegranate10 : COLORS.pomegranate};
disabled ? COLORS.pomegranate10 : COLORS.pomegranate12};
border-style: solid;
border-radius: 8px;
display: inline-flex;
Expand Down
1 change: 1 addition & 0 deletions styles/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ const COLORS = {

pomegranate: '#342A2F',
pomegranate10: '#6F585E',
pomegranate12: '#342A2F',
};

export default COLORS;

0 comments on commit 3383127

Please sign in to comment.