Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
WRadoslaw committed Aug 4, 2023
1 parent 7e2c417 commit 1e1fadf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const StepCardContainer = styled.div<{ isActive: boolean }>`
border-left: 4px solid ${(props) => (props.isActive ? cVar('colorBackgroundPrimary') : 'transparent')};
padding: 16px;
.stepNumber {
.step-number {
background-color: ${(props) =>
props.isActive ? cVar('colorBackgroundPrimary') : cVar('colorBackgroundStrongAlpha')};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ const StepCard = ({ step, status, stepNumber }: StepCardProps) => {

return (
<StepCardContainer isActive={status === 'active'}>
<StepNumber className="stepNumber">
<StepNumber className="step-number">
<Text variant="t200-strong" as="p">
{status === 'done' ? <SvgActionCheck /> : stepNumber}
</Text>
Expand Down

0 comments on commit 1e1fadf

Please sign in to comment.