Skip to content

Instantly share code, notes, and snippets.

@GregJacobs82
Created February 11, 2021 21:09
Show Gist options
  • Save GregJacobs82/5cdd7264ccfc2ae2b5d443b2ad4508cb to your computer and use it in GitHub Desktop.
Save GregJacobs82/5cdd7264ccfc2ae2b5d443b2ad4508cb to your computer and use it in GitHub Desktop.
//*** OPACITY ***/
// EXAMPLE OUTPUT: .opacity-50 { opacity: .5; }
@for $i from 1 through 100 {
.opacity-#{$i} {
opacity: #{$i * .01};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment