Last active
July 28, 2016 07:38
-
-
Save kovtunos/51f1c880d2cadf8af43809590799fa89 to your computer and use it in GitHub Desktop.
List (li) triangle using bourbon mixin #sass
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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