CSS变量中使用Sass变量

184 阅读1分钟

Sass 的语法改变了,较新版本的Sass要求在插值中写入自定义属性值,比如#{}

$color:blue;
.theme{
   --color:#{$color};
}