Sha256: 071848ca5e6889af0d44fcbb317d5f460879b118252d02d9acd84bdf158bcfe1

Contents?: true

Size: 752 Bytes

Versions: 29

Compression:

Stored size: 752 Bytes

Contents

// Foundation for Sites by ZURB
// foundation.zurb.com
// 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

29 entries across 29 versions & 4 rubygems

Version Path
jekyll-theme-foundation-0.2.5 _sass/scss/prototype/_arrow.scss
jekyll-theme-foundation-0.2.4 _sass/scss/prototype/_arrow.scss
jekyll-theme-foundation-0.2.3 _sass/scss/prototype/_arrow.scss
jekyll-theme-foundation-0.2.2 _sass/scss/prototype/_arrow.scss
jekyll-theme-foundation-0.2.1 _sass/scss/prototype/_arrow.scss
jekyll-theme-foundation-0.2.0 _sass/scss/prototype/_arrow.scss
jekyll-theme-foundation-0.1.0 _sass/scss/prototype/_arrow.scss
foundation-rails-6.4.1.2 vendor/assets/scss/prototype/_arrow.scss
foundation-rails-6.4.1.0 vendor/assets/scss/prototype/_arrow.scss