📌  相关文章
📜  将 ':svg:path' 内的 'fill' 与 scss 变量绑定 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:52.150000             🧑  作者: Mango

代码示例1
@use 'src/variables' as c;
/*or (if you are not importing variables from external file):
$your-color: blue;
*/

svg>path{
  fill: c.$your-color;
}