Skip to content

Instantly share code, notes, and snippets.

View wmeredith's full-sized avatar

Wade Meredith wmeredith

View GitHub Profile
@wmeredith
wmeredith / _arrow.scss
Last active May 6, 2016 15:57 — forked from kieranmv95/_arrow.scss
Create pure CSS triangles in a matter of seconds with this scss mixin
@mixin arrow($settings){
$arrow-direction: map-get($settings, direction);
$arrow-color: map-get($settings, color);
$arrow-size: map-get($settings, size);
width: 0;
height: 0;
display: inline-block;
@if ($arrow-direction == down){