Last active
May 4, 2019 12:57
-
-
Save tomfordweb/1fa66ac9a9352d7640be9bb915b5f45a to your computer and use it in GitHub Desktop.
SASS Triangle
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
@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