Last active
June 17, 2017 01:54
-
-
Save terkel/5429b48686a84d9e7f3961a213d3a611 to your computer and use it in GitHub Desktop.
Sass CJK lang selector
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
@mixin lang-cjk () { | |
&:lang(zh), | |
&:lang(ja), | |
&:lang(ko) { | |
@content; | |
} | |
} | |
@mixin lang-not-cjk () { | |
&:not(:lang(zh)):not(:lang(ja)):not(:lang(ko)) { | |
@content; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment