Sha256: 333b5c49f3579f38179ac38d7b7833bc94c46e3a9ea6668ffd7016427a20f4c8
Contents?: true
Size: 747 Bytes
Versions: 2
Compression:
Stored size: 747 Bytes
Contents
// Foundation for Sites // https://get.foundation // Licensed under MIT Open Source //// /// @group prototype-arrow //// /// Map containing all the `arrow` direction /// @type Map $prototype-arrow-directions: ( down, up, right, left ) !default; /// Width of the Arrow, `0.4375rem` by default. /// @type Number $prototype-arrow-size: 0.4375rem; /// Color of the Arrow, `$black` by default. /// @type Color $prototype-arrow-color: $black; @mixin foundation-prototype-arrow { @each $prototype-arrow-direction in $prototype-arrow-directions { .arrow-#{$prototype-arrow-direction} { @include css-triangle( $prototype-arrow-size, $prototype-arrow-color, $prototype-arrow-direction ); } } }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
foundation-rails-6.9.0.0 | vendor/assets/scss/prototype/_arrow.scss |
foundation-rails-6.6.2.0 | vendor/assets/scss/prototype/_arrow.scss |