Skip to content

Instantly share code, notes, and snippets.

@naganowl
Created May 5, 2017 01:04
Show Gist options
  • Save naganowl/db801e506b0677faad8b7a47b865da44 to your computer and use it in GitHub Desktop.
Save naganowl/db801e506b0677faad8b7a47b865da44 to your computer and use it in GitHub Desktop.
Repeating a selector
@import './repeat.scss'
#{repeat('.jasmine-passed', 15)} a {
color: aliceblue !important;
}
@function repeat($selector, $num) {
$dupeSelector: $selector;
@for $i from 0 to $num {
$dupeSelector: $dupeSelector + $selector;
}
@return $dupeSelector;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment