blob: 2695ef9860d848568e08fc4d9dcbceb9128f89a8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
@mixin test2 ($p1, $p2) {
-webkit-test: $p1 $p2;
-moz-test: $p1 $p2;
}
@mixin test3 ($p1, $p2, $p3) {
-webkit-test: $p1 $p2 $p3;
-moz-test: $p1 $p2 $p3;
}
@include test2(foo, bar);
@include test3(foo, bar, zoo);
|