Guest User

Untitled

a guest
Nov 18th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. @mixin arrow($size, $color, $distanceFromLeft, $position) {
  2. &:after {
  3. content: "";
  4. width: 0px;
  5. height: 0px;
  6. border-left: $size solid transparent;
  7. border-right: $size solid transparent;
  8.  
  9. @if $position == top {
  10. border-bottom: $size solid $color;
  11. top: - $size;
  12. }
  13. @else {
  14. border-top: $size solid $color;
  15. bottom: - $size;
  16. }
  17.  
  18. position: absolute;
  19. left: $distanceFromLeft;
  20. }
  21. }
Add Comment
Please, Sign In to add comment