UNPKG

255 BSCSSView Raw
1@import "restyle";
2
3@include restyle-define(test, (
4 width: restyle-var(width)
5));
6
7.test {
8 &.25 {
9 @include restyle(test, $variables: (
10 width: 25%
11 ));
12 }
13 &.100 {
14 @include restyle(test, $variables: (
15 width: 100%
16 ));
17 }
18}