UNPKG

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