Skip to content

Commit

Permalink
Add unit to scss where required
Browse files Browse the repository at this point in the history
  • Loading branch information
brianebeling committed Dec 21, 2022
1 parent 152c320 commit 7e950ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/assets/scss/_functions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,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%);
}

// Request a color level
Expand Down

0 comments on commit 7e950ff

Please sign in to comment.