Skip to content

Instantly share code, notes, and snippets.

@sdempsey
Created February 15, 2016 20:32
Show Gist options
  • Save sdempsey/364bcdd513be77c950b2 to your computer and use it in GitHub Desktop.
Save sdempsey/364bcdd513be77c950b2 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$alignments: left, right, center;
.large-hero {
color: white;
&-content {
@each $alignment in $alignments {
.#{$alignment} & {
text-align: #{$alignment};
}
}
}
}
.large-hero {
color: white;
}
.left .large-hero-content {
text-align: left;
}
.right .large-hero-content {
text-align: right;
}
.center .large-hero-content {
text-align: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment