UNPKG

195 BSCSSView Raw
1@import "restyle";
2
3@include restyle-define(test, (
4 '.not-root': (
5 is-root: false
6 ),
7 '@at-root': (
8 '.root': (
9 is-root: true
10 )
11 )
12));
13
14.test {
15 @include restyle(test);
16}