Skip to content

Commit

Permalink
no longer need to pass !important separately
Browse files Browse the repository at this point in the history
  • Loading branch information
ashfahan committed May 31, 2021
1 parent b09c29d commit 75e6bf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/mixins/_font-size.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// [optional] {Map} $important - set important in css style
//
@mixin fontsize($fontsize: $fontsize-normal, $important: false) {
font-size: #{fontsize($fontsize)}#{if($important, !important, null)};
font-size: fontsize($fontsize #{if($important, !important, null)});
}

//
Expand Down

0 comments on commit 75e6bf5

Please sign in to comment.