Skip to content

Instantly share code, notes, and snippets.

@zanetaylor
Last active December 22, 2015 20:49
Show Gist options
  • Save zanetaylor/6528761 to your computer and use it in GitHub Desktop.
Save zanetaylor/6528761 to your computer and use it in GitHub Desktop.
SASS caret mixin
@mixin caret($point, $border-width, $color) {
$opposite: opposite-position($point);
border: $border-width solid transparent;
border-#{$opposite}: $border-width solid $color;
border-#{$point}: 0;
height: 0;
width: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment