Last active
August 29, 2015 14:18
-
-
Save airen/8232100b174140ef0a38 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.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
@mixin mt($var){ | |
margin-top: $var; | |
} | |
.block { | |
@include mt(5px); | |
span { | |
display:block; | |
@include mt(5px); | |
} | |
} | |
.header { | |
color: orange; | |
@include mt(5px); | |
span{ | |
display:block; | |
@include mt(5px); | |
} | |
} |
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
.block { | |
margin-top: 5px; | |
} | |
.block span { | |
display: block; | |
margin-top: 5px; | |
} | |
.header { | |
color: orange; | |
margin-top: 5px; | |
} | |
.header span { | |
display: block; | |
margin-top: 5px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment