Skip to content

Commit

Permalink
fix style linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
SarjuHansaliya committed Nov 2, 2021
1 parent e44c186 commit 5a15628
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions src/components/Steps/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,14 @@ export const StepName = styled('div')`
`;

export const IconDot = styled.div<{ completed?: boolean; active?: boolean }>`
position: relative;
z-index: 5;
display: flex;
justify-content: center;
align-items: center;
width: 10px;
height: 10px;
border-radius: 50%;
background: ${({ completed, active, theme }) => (completed || active ? theme.primary1 : theme.bg5)};
margin-top: 17px;
}
position: relative;
z-index: 5;
display: flex;
justify-content: center;
align-items: center;
width: 10px;
height: 10px;
border-radius: 50%;
background: ${({ completed, active, theme }) => (completed || active ? theme.primary1 : theme.bg5)};
margin-top: 17px;
`;

0 comments on commit 5a15628

Please sign in to comment.