错误:未定义操作“#700e70” 15%”
嘿,我正在学习 Sass,当我尝试使用函数时遇到了一个问题。代码返回错误:未定义操作“#700e70 + 15%”。
代码如下:
&:hover{
background-color: lighten(a.$bg-color, 15%);
}
函数:
@function lighten($color, $amount){
$color: $color + $amount;
@return $color;
}
输出:
Error: Undefined operation "#700e70 + 15%".
╷
2 │ $color: $color + $amount;
│ ^^^^^^^^^^^^^^^^
╵
style\util\_functions.scss 2:13 lighten()
style\components\_buttons.scss 12:27 @forward
style\components\index.scss 2:1 @use
style\main.scss 1:1 root stylesheet
Hey i'm learning Sass and been facing an issue when I try using a function. The code is returning Error: Undefined operation "#700e70 + 15%".
Here's the code:
&:hover{
background-color: lighten(a.$bg-color, 15%);
}
The function:
@function lighten($color, $amount){
$color: $color + $amount;
@return $color;
}
The output:
Error: Undefined operation "#700e70 + 15%".
╷
2 │ $color: $color + $amount;
│ ^^^^^^^^^^^^^^^^
╵
style\util\_functions.scss 2:13 lighten()
style\components\_buttons.scss 12:27 @forward
style\components\index.scss 2:1 @use
style\main.scss 1:1 root stylesheet
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论