【发布时间】:2018-01-20 23:36:48
【问题描述】:
我在 mixin 中使用了以下 scss 代码,但编译后 -moz- 和 -o- 供应商前缀未显示在已编译的 css 文件中。
@mixin transition($move) {
-webkit-transition: $move;
-moz-transition: $move;
-o-transition: $move;
transition: $move;
}
a {
&:hover, &:focus {
color: $brand-color;
}
@include transition(all 0.2s linear);
}
使用 mix 编译后:
a {
-webkit-transition: all 0.2s linear;
transition: all 0.2s linear;
}
a:hover,
a:focus {
color: #4676fa;
}
提前致谢。 :)
【问题讨论】:
标签: css laravel sass laravel-mix