Sha256: 8ce3820ff567df9a0bf9b99b828e2d9d1c498195b9fb13d9047676943bc01cbf
Contents?: true
Size: 821 Bytes
Versions: 83
Compression:
Stored size: 821 Bytes
Contents
@mixin caret($width: 1em, $height: 1em, $direction: up, $color-caret: $color-3) { &:before { content: ''; display: block; position: absolute; border-width: $height $width; border-style: solid; border-color: transparent; @if $direction == up { border-bottom-color: $color-caret; top: -2 * $width; left: 50%; margin-left: -$height; } @else if $direction == down { border-top-color: $color-caret; top: -2 * $width; left: 50%; margin-left: -$height; } @else if $direction == left { border-right-color: $color-caret; left: -2 * $width; top: 50%; margin-top: -$height; } @else { border-left-color: $color-caret; right: -2 * $width; top: 50%; margin-top: -$height; } } }
Version data entries
83 entries across 83 versions & 2 rubygems