Last active
November 12, 2016 08:46
-
-
Save nukos/5c83bb61d4903f01ff77a414786e1334 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$mix-data-state-prefix: 'is' !default; | |
$mix-data-state-attr: 'data' !default; | |
@mixin data-state($name, $state: true, $attr: $mix-data-state-attr, $prefix: $mix-data-state-prefix) { | |
&[#{$attr}-#{$prefix}-#{$name}=#{$state}] { | |
@content; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment