Last active
January 4, 2017 04:37
-
-
Save carrieforde/51320fc3fa590cb0d5c27120fd7a9e6c to your computer and use it in GitHub Desktop.
Sass snippets
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
@mixin element($element) { | |
&__#{$element} { | |
@content; | |
} | |
} | |
@mixin modifier($modifier) { | |
&--#{$modifier) { | |
@content; | |
} | |
} |
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
@mixin vertical-rhythym($margin: rem(60)) { | |
& + & { | |
margin-top: $margin; | |
@content; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment