Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Aug 16, 2023
1 parent f959069 commit 7e09921
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sass/includes/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
$rem: list.append($rem, $value);
} @else {
$px: list.append($px, $value);
$rem: list.append($rem, rem(strip-unit($value), strip-unit($base-font-size)));
$rem: list.append(
$rem,
rem(strip-unit($value), strip-unit($base-font-size))
);
}
}
#{$property}: $px;
Expand Down

0 comments on commit 7e09921

Please sign in to comment.