转换为Sass函数,变量问题

时间:2017-08-03 11:28:44

标签: sass less

我正在尝试将较少的函数转换为Sass,但它不起作用

LESS:

@iconNb : 35;
    @espaces : @iconNb * 2; 
    @iconSpriteBackgroundSize : @espaces * 100%;
    .svg(@index, @y:0){
        background-size:@iconSpriteBackgroundSize;
        @x :  -(@index * 100%);
        background-position : @x @y !important;;
    }

萨斯:

 @mixin svg($index){
    $iconNb : 35;
    $espaces : $iconNb * 2; 
    background-size: $espaces * 100%;
    $x :  -($index * 100%);
    background-position : $x 0 !important;
}

0 个答案:

没有答案