UNPKG

181 BSCSSView Raw
1@import "restyle";
2
3@include restyle-define(test, (
4 foo: bar,
5 bar: this(foo),
6
7 restyle-state(hover): (
8 foo: this(parent(foo))
9 )
10));
11
12.test {
13 @include restyle(test);
14}