Created
September 4, 2014 16:26
-
-
Save hatefulcrawdad/1bf7bb982143e4591338 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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.2.19) | |
// Compass (v0.12.6) | |
// ---- | |
// Component Name | |
// Basic description of the component, what it does, etc. | |
// Can go as many lines as you need to. | |
// | |
// - .button: Basic button styles with no variation | |
// - &.red: Changes the color to red. | |
// - &.blue: Changes the color to blue. | |
// | |
.button { | |
color: red; | |
&.green { color: green; } | |
&.blue { color: blue; } | |
} |
This file contains hidden or 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
.button { | |
color: red; | |
} | |
.button.green { | |
color: green; | |
} | |
.button.blue { | |
color: blue; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment