Skip to content

Instantly share code, notes, and snippets.

@KittyGiraudel
Last active August 29, 2015 14:02
Show Gist options
  • Save KittyGiraudel/697e81fe579be751a69a to your computer and use it in GitHub Desktop.
Save KittyGiraudel/697e81fe579be751a69a to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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...);
}
.module {
background: hotpink;
transition: 0.15s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment