Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e10c0ea

Browse files
committed
linter
1 parent 3098795 commit e10c0ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scss/_functions.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ $_luminance-list: .0008 .001 .0011 .0013 .0015 .0017 .002 .0022 .0025 .0027 .003
230230
@return 0;
231231
}
232232
@if $divisor == 0 {
233-
@error 'Cannot divide by 0';
233+
@error "Cannot divide by 0";
234234
}
235235
@if $divisor == 1 {
236236
@return $dividend;
@@ -240,7 +240,7 @@ $_luminance-list: .0008 .001 .0011 .0013 .0015 .0017 .002 .0022 .0025 .0027 .003
240240
$remainder: $remainder - $divisor;
241241
}
242242
@if $remainder > 0 and $precision > 0 {
243-
$remainder: divide($remainder * 10, $divisor, $precision - 1) * 0.1;
243+
$remainder: divide($remainder * 10, $divisor, $precision - 1) * .1;
244244
}
245245
@return ($quotient + $remainder) * $sign;
246246
}

0 commit comments

Comments
 (0)