We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d3b4b3 commit af67fafCopy full SHA for af67faf
src/functions.cpp
@@ -388,8 +388,8 @@ namespace Sass {
388
BUILT_IN(hsl)
389
{
390
return hsla_impl(ARG("$hue", Number)->value(),
391
- ARGR("$saturation", Number, 0, 100)->value(),
392
- ARGR("$lightness", Number, 0, 100)->value(),
+ ARG("$saturation", Number)->value(),
+ ARG("$lightness", Number)->value(),
393
1.0,
394
ctx,
395
pstate);
@@ -399,9 +399,9 @@ namespace Sass {
399
BUILT_IN(hsla)
400
401
402
403
404
- ARGR("$alpha", Number, 0, 1)->value(),
+ ARG("$alpha", Number)->value(),
405
406
407
}
0 commit comments