Skip to content

Commit

Permalink
Fix grow utilities
Browse files Browse the repository at this point in the history
  • Loading branch information
tinchox5 committed Dec 28, 2024
1 parent f11a74e commit 2c02f51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/scss/_utilities.scss
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,14 @@ Can be used in parent elements or in each orbiter class
}
@for $i from 1 through $max-orbits {
.grow-#{$i}x {
--o-size-ratio: #{calc($i + 1)} !important;
--o-size-ratio: #{calc($i * 2)} !important;
}

@for $f from 1 through 9 {
$percent: calc($f);
$value: calc($f / 10);
$value: calc($f / 5);
.grow-#{$i}\.#{$percent}x {
--o-size-ratio: #{calc($i + 1 + $value)} !important;
--o-size-ratio: #{calc($i * 2 + $value)} !important;
}
}

Expand Down

0 comments on commit 2c02f51

Please sign in to comment.