Commit 6d8f0c30 authored by Robert Lyon's avatar Robert Lyon
Browse files

Bug 1995813: Fixing up sass to deal with deprecated warning



Change-Id: I574f4e29f44e9fe728596d83196f12d70c8b43b9
Signed-off-by: default avatarRobert Lyon <robertl@catalyst.net.nz>
parent 9e89a57c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -148,7 +148,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