Skip to content

Commit

Permalink
[fix] addressed comments: removed unused imports, reformatted import …
Browse files Browse the repository at this point in the history
…path directories, and removed local styles from global styles file
  • Loading branch information
rohin-444 committed Dec 7, 2024
1 parent 8a8e48e commit 68cd5ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions styles/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export const ContinueButton = styled.button`
align-items: center;
align-self: stretch;
border-radius: 99999px;
background: ${COLORS.pomegranate};
background: ${COLORS.pomegranate12};
border-style: solid;
border-color: ${COLORS.gray12};
cursor: pointer;
Expand All @@ -90,7 +90,7 @@ interface RoundedCornerButtonProps {

export const RoundedCornerButton = styled.button<RoundedCornerButtonProps>`
font-family: ${Sans.style.fontFamily};
background-color: ${props => props.bgColor || COLORS.pomegranate};
background-color: ${props => props.bgColor || COLORS.pomegranate12};
color: ${props => props.textColor || 'white'};
font-size: 1rem;
padding: 0.55rem;
Expand Down

0 comments on commit 68cd5ee

Please sign in to comment.