$social-colors 是map对象,@each是用来遍历列表的,一下写法:
@each $social-network,$social-color in $social-colors
这样写就能把$social-colors 转换成一个列表的了吗?
$social-network,$social-color只是同时获取$social-colors中某个象的key和value,并不能转换成一个列表
这样遍历的话第二个变量($social-color)会被忽略