UNPKG

251 BSCSSView Raw
1@import 'restyle';
2
3@include restyle-define(captured, (
4 "@restyle.modifiers": (
5 test: (
6 working: true
7 )
8 )
9)) {
10 captured: true;
11};
12
13.is-captured {
14 @include restyle(captured);
15
16 &.test {
17 @include restyle(test captured);
18 }
19}