UNPKG

319 BSCSSView Raw
1@import "restyle";
2
3@function map($map) {
4 @return $map;
5}
6
7@include restyle-define(test, (
8 color: red,
9 restyle-var(foo): this(color),
10 restyle-function(map): (
11 foo: restyle-var(foo),
12 color: this(color)
13 ),
14
15 test: multiple-values(restyle-var(foo), this(color))
16));
17
18.test {
19 @include restyle(test);
20}