Skip to content
This repository has been archived by the owner on Jun 14, 2022. It is now read-only.

Commit

Permalink
Merge pull request #5 from HugoGiraudel/patch-1
Browse files Browse the repository at this point in the history
Fixed an issue with the baseline in rem function
  • Loading branch information
kaelig committed Jul 18, 2014
2 parents 84f861a + 74790cf commit 8043daa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _rem.scss
Expand Up @@ -7,7 +7,7 @@ $guss-rem-baseline: 10px !default;
@if type-of($value) == list {
$result: ();
@each $e in $value {
$result: append($result, rem($e));
$result: append($result, rem($e, $baseline));
}
@return $result;
} @else {
Expand Down

0 comments on commit 8043daa

Please sign in to comment.