Skip to content

Commit

Permalink
Fix deprecation warning with sass 1.56.0 (#37425)
Browse files Browse the repository at this point in the history
Deprecation Warning: $weight: Passing a number without unit % (100) is deprecated.
To preserve current behavior: $weight * 1%
More info: https://sass-lang.com/d/function-units
  • Loading branch information
blankse authored and julien-deramond committed Nov 16, 2022
1 parent 961d5ff commit 5d02533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scss/_functions.scss
Expand Up @@ -198,7 +198,7 @@ $_luminance-list: .0008 .001 .0011 .0013 .0015 .0017 .002 .0022 .0025 .0027 .003
// Return opaque color
// opaque(#fff, rgba(0, 0, 0, .5)) => #808080
@function opaque($background, $foreground) {
@return mix(rgba($foreground, 1), $background, opacity($foreground) * 100);
@return mix(rgba($foreground, 1), $background, opacity($foreground) * 100%);
}

// scss-docs-start color-functions
Expand Down

0 comments on commit 5d02533

Please sign in to comment.