Skip to content

Commit

Permalink
fix: division warning in number-picker.scss (#1088)
Browse files Browse the repository at this point in the history
  • Loading branch information
kris2kris authored Jun 28, 2021
1 parent 3d21ebd commit 780b24a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/react-widgets/src/scss/number-picker.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
@use 'sass:math';
@use './variables.scss' as *;

@mixin NumberPicker() {
.rw-number-picker {
$half-width: $input-height / 2;
$half-width: math.div($input-height, 2);
}

.rw-number-picker-spinners {
Expand Down

0 comments on commit 780b24a

Please sign in to comment.