Last active
August 29, 2015 14:02
-
-
Save KittyGiraudel/697e81fe579be751a69a 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.3.7) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
// _mixins.scss | |
@mixin module($color, $duration: 0s, $border: null) { | |
background: $color; | |
transition: $duration; | |
border: $border; | |
} | |
// _module.scss | |
$configuration: ( | |
duration: .15s, | |
color: hotpink | |
); | |
.module { | |
@include module($configuration...); | |
} |
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
.module { | |
background: hotpink; | |
transition: 0.15s; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment