Skip to content

Commit

Permalink
Fix deprecated division
Browse files Browse the repository at this point in the history
  • Loading branch information
simonschaufi committed Mar 18, 2022
1 parent 0c38075 commit 210dad6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sass/colorpicker.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ $bar-size-large: ($bar-size-short * $columns) + ($base-margin * ($columns - 1));
linear-gradient(45deg, rgba(0, 0, 0, 0.1) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.1) 0),
rgb(255, 255, 255);
background-size: $size $size;
background-position: 0 0, $size/2 $size/2;
background-position: 0 0, calc(#{$size} / 2) calc(#{$size} / 2);
}

@mixin bgSaturation() {
Expand Down

0 comments on commit 210dad6

Please sign in to comment.