Skip to content

Commit

Permalink
lint all
Browse files Browse the repository at this point in the history
  • Loading branch information
Falkaniere authored Jul 26, 2023
1 parent 370471a commit 04bfda1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/yoga/src/Stepper/native/Dots.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const Dot = styled.View(
const Label = styled(Text.Bold)(
({
active,
secondary,
secondary,
theme: {
yoga: {
components: { stepper },
Expand All @@ -53,16 +53,16 @@ const Label = styled(Text.Bold)(
const state = secondary ? 'secondary' : 'active';

return css`
width: 95px;
width: 95px;
margin-top: 10px;
margin-left: -40px;
color: ${active
? stepper.label.color[state]
: stepper.label.color.inactive};
: stepper.label.color.inactive};
font-size: ${stepper.label.font.size}px;
text-align: center;
text-align: center;
`;
},
);
Expand Down

0 comments on commit 04bfda1

Please sign in to comment.