Skip to content

Instantly share code, notes, and snippets.

@tomfordweb
Last active May 4, 2019 12:57
Show Gist options
  • Save tomfordweb/1fa66ac9a9352d7640be9bb915b5f45a to your computer and use it in GitHub Desktop.
Save tomfordweb/1fa66ac9a9352d7640be9bb915b5f45a to your computer and use it in GitHub Desktop.
SASS Triangle
@mixin triangle($direction, $size, $color) {
width: 0;
height: 0;
border: $size solid transparent;
border-#{$direction}: $size solid $color;
}
// div { @include triangle(left, 20px, #BADA55);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment