Last active
August 29, 2015 14:08
-
-
Save Kcko/e82010cf6046b4c79a70 to your computer and use it in GitHub Desktop.
Spojení pole do multitříd
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
// ---- | |
// Sass (v3.4.6) | |
// Compass (v1.0.1) | |
// ---- | |
@function borci() { | |
$arr: ('.netolicak', kcko); | |
$list: (); | |
@each $input in $arr { | |
$list: append($list, $input, comma); | |
} | |
@return $list; | |
} | |
#{borci()} | |
{ | |
color: pink; | |
} |
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
.netolicak, kcko { | |
color: pink; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment