UNPKG

219 BSCSSView Raw
1@import "restyle";
2
3@include restyle-define(test, (
4 restyle-var(foo): 2,
5 restyle-var-constraints: (
6 foo: (
7 not-one-of: (1, 2, 3)
8 )
9 ),
10 foo: restyle-var(foo)
11));
12
13.test {
14 @include restyle(test);
15}