Skip to content

Instantly share code, notes, and snippets.

@kovtunos
Last active July 28, 2016 07:38
Show Gist options
  • Select an option

  • Save kovtunos/51f1c880d2cadf8af43809590799fa89 to your computer and use it in GitHub Desktop.

Select an option

Save kovtunos/51f1c880d2cadf8af43809590799fa89 to your computer and use it in GitHub Desktop.
List (li) triangle using bourbon mixin #sass
li {
position: relative;
&::before {
@include triangle(12px, #fff, right);
content: '';
display: block;
width: 6px;
height: 10px;
position: absolute;
top: 10px;
left: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment