Replies: 1 comment
-
|
In the main example @define-mixin icon $network, $color: blue {
.icon.is-$(network) {
color: $color;
@mixin-content;
}
.icon.is-$(network):hover {
color: white;
background: $color;
}
}
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Default sass implementation for mixins shows that you can set arguments like this:
is it possible to achieve something similar with this plugin? I didn't quite understand the example in README
Beta Was this translation helpful? Give feedback.
All reactions