blob: 330d533cb64fbec04c70925eb3def6f32b35eddb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
@function pass-through($inputs) {
$list : ();
@each $input in $inputs {
$list: append($list, $input, comma);
}
@return $list;
}
$test: pass-through(p);
#{$test} {
color: red;
}
|