Created
September 30, 2014 14:37
-
-
Save Misiur/06386eac449f201ac5fe 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.4) | |
// Compass (v1.0.1) | |
// ---- | |
.col-xs-6 { | |
width: 666px; | |
} | |
.random-class { | |
.col-xs-6 { | |
padding: 15px; | |
} | |
} | |
.my-class { | |
@extend .col-xs-6; | |
} |
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
.col-xs-6, .my-class { | |
width: 666px; | |
} | |
.random-class .col-xs-6, .random-class .my-class { | |
padding: 15px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment