Skip to content

Commit

Permalink
fix font mixin color default value to null
Browse files Browse the repository at this point in the history
  • Loading branch information
Black Mirror committed Mar 15, 2018
1 parent 5a35b8c commit 334fcb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scss/mixins/_text.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ $line-height-modes: array-concat((normal), $css-default-modes);
}

@mixin font($options) {
$settings: (size: 1rem, height: 1rem, family: null, weight: normal, color: inherit);
$settings: (size: 1rem, height: 1rem, family: null, weight: normal, color: null);

@if is-object($options) {
$settings: extend($settings, $options);
Expand Down

0 comments on commit 334fcb8

Please sign in to comment.