Skip to content

Commit

Permalink
fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
amy-corson-ibigroup committed Nov 30, 2023
1 parent f062d88 commit 9f0143e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const SelectedColorContainer = styled.div`
`;

const SelectedColor = styled.div<{ color: string }>`
width: 100xpx;
width: 100px;
height: 50px;
background-color: ${props => props.color};
border-radius: 5px 5px 0 0;
Expand All @@ -30,7 +30,7 @@ const SelectedColor = styled.div<{ color: string }>`
const SelectedColorSwatch = styled.div`
border: 1px solid grey;
border-radius: 5px;
min-width 85px;
min-width: 85px;
p {
padding: 10px;
Expand Down

0 comments on commit 9f0143e

Please sign in to comment.