Skip to content

Instantly share code, notes, and snippets.

@angelorubin
Created January 26, 2017 16:29
Show Gist options
  • Select an option

  • Save angelorubin/83dcce05702c2064eec87d18b73216e1 to your computer and use it in GitHub Desktop.

Select an option

Save angelorubin/83dcce05702c2064eec87d18b73216e1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.21)
// Compass (v1.0.3)
// ----
@mixin respond-to($color, $width) {
border: {
color: $color;
width: $width;
style: dashed;
}
}
p { @include respond-to(blue, 1in); }
p {
border-color: blue;
border-width: 1in;
border-style: dashed;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment