Skip to content

Commit

Permalink
Steps calculate width
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Feb 7, 2024
1 parent a7a0915 commit 1633b8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion themes/aura/aura-dark/extensions/_steps.scss
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

&:first-child {
&::before {
width: calc(50% + math.div($stepsItemNumberWidth,2));
width: calc(50% + #{math.div($stepsItemNumberWidth, 2)});
transform: translateX(100%);
}
}
Expand Down
2 changes: 1 addition & 1 deletion themes/aura/aura-light/extensions/_steps.scss
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

&:first-child {
&::before {
width: calc(50% + $stepsItemNumberWidth * 0.5);
width: calc(50% + #{math.div($stepsItemNumberWidth, 2)});
transform: translateX(100%);
}
}
Expand Down

0 comments on commit 1633b8b

Please sign in to comment.