refactor(sass): renaming Sass variables in each loops to be consistent

closes #603
This commit is contained in:
Brandy Carney
2015-11-20 13:25:04 -05:00
parent fca5f9bbba
commit c2b7a0c75d
4 changed files with 16 additions and 15 deletions

View File

@@ -101,7 +101,7 @@ sub {
bottom: -0.25em;
}
@each $color, $value in $colors {
@each $color-name, $color-value in $colors {
h1, h2, h3, h4, h5, h6,
p,
span,
@@ -114,8 +114,8 @@ sub {
em,
sub,
sup {
&[#{$color}] {
color: $value !important;
}
&[#{$color-name}] {
color: $color-value !important;
}
}
}