Skip to content

Commit

Permalink
fix(pci): use division inside calc in scss
Browse files Browse the repository at this point in the history
 ref: MANAGER-11738

Signed-off-by: Anoop N <[email protected]>
  • Loading branch information
anooparveti committed Aug 10, 2023
1 parent fcb91aa commit 6dd541e
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 @@ -123,7 +123,7 @@ pci-project-creating {

50% {
stroke-dasharray: 120, 300;
stroke-dashoffset: -$d / 3;
stroke-dashoffset: calc(-#{$d} / 3);
}

100% {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ pci-project-creating {

50% {
stroke-dasharray: 120, 300;
stroke-dashoffset: -$d / 3;
stroke-dashoffset: calc(-#{$d} / 3);
}

100% {
Expand Down

0 comments on commit 6dd541e

Please sign in to comment.