Skip to content

Commit

Permalink
Merge pull request #238 from mattgoud/fix-sccs-deprecated-division-ou…
Browse files Browse the repository at this point in the history
…tside-calc

Fix sccs deprecated division outside calc
  • Loading branch information
jolelievre authored Sep 30, 2024
2 parents 1c255d9 + fda7416 commit da7797a
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -233,19 +233,11 @@ $spacer: 1.875rem;

$spacers: (
0: 0,
1: (
$spacer / 6,
),
2: (
$spacer / 3,
),
3: (
$spacer / 2,
),
1: calc($spacer / 6),
2: calc($spacer / 3),
3: calc($spacer / 2),
4: $spacer,
5: (
$spacer * 2,
),
5: calc($spacer * 2),
);

// Body
Expand Down

0 comments on commit da7797a

Please sign in to comment.