Skip to content

Commit

Permalink
Bug fix for placeholders
Browse files Browse the repository at this point in the history
  • Loading branch information
Mack, Kevin committed Sep 3, 2014
1 parent 6527452 commit 2267dd9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions unit-space.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
// * https://github.com/kevinmack18/SASS-Margin-and-Padding-Starter/blob/master/LICENSE
// * Version: v3.0.0
// * Date: 2014-08-25


@import "unit_space__variables";

Expand Down Expand Up @@ -102,8 +101,10 @@
}

@if( $variation != "base" and (map-get($variations, $variation) == true) ) {
$id: if($version == "default", "", $version);

.#{$selector-base}-#{$variation}#{$selector-suffix} {
@extend %#{$selector-base}-#{$variation}#{$selector-suffix} !optional;
@extend %#{$selector-base}-#{$variation}#{$selector-suffix}#{$id} !optional;
}
}
}
Expand Down Expand Up @@ -173,3 +174,4 @@

}
}

0 comments on commit 2267dd9

Please sign in to comment.