Created
February 3, 2016 21:48
-
-
Save pdokas/f6dcad746995903f5a15 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
// ---- | |
// libsass (v3.3.2) | |
// ---- | |
@mixin blue { | |
color: blue; | |
} | |
@mixin border { | |
border: 1px solid black; | |
} | |
@mixin padding { | |
padding: 10px; | |
} | |
div { | |
@include blue; | |
@include border; | |
@include padding; | |
} | |
button { | |
@include blue; | |
@include border; | |
@include padding; | |
} |
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
div { | |
color: blue; | |
border: 1px solid black; | |
padding: 10px; | |
} | |
button { | |
color: blue; | |
border: 1px solid black; | |
padding: 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment