Skip to content

Instantly share code, notes, and snippets.

@KatieK2
Created October 14, 2014 17:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KatieK2/b5119d77bae5582a0cc5 to your computer and use it in GitHub Desktop.
Save KatieK2/b5119d77bae5582a0cc5 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v2.0.0)
// ----
@mixin border($direction,$size,$colour) {
border-#{$direction}: $size solid $colour;
}
h2 {
@include border("top", "2px", "red");
}
h2 {
border-top: "2px" solid "red"; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment