Created
January 9, 2015 17:47
-
-
Save elrumordelaluz/ae84bf8975c73fbbf492 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.4.9) | |
// Compass (v1.0.1) | |
// ---- | |
$classes: class-1 class-2 class-3; | |
%reset { | |
padding-right: 0px; | |
padding-left: 0px; | |
} | |
@each $class in $classes { | |
.full-width .#{$class} { | |
@extend %reset; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.full-width .class-1, .full-width .class-2, .full-width .class-3 { | |
padding-right: 0px; | |
padding-left: 0px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment