Sha256: dc5c866e3fcb496dd9bdae0c731ee13a714c1b3479d75aa012c3acbd73b41f81

Contents?: true

Size: 516 Bytes

Versions: 3

Compression:

Stored size: 516 Bytes

Contents

@mixin split-line($direction: default, $width: default, $color: default) {
  @if $direction == default {
    $direction: top;
  }
  @if $color == default {
    $color: $border-color-l;
  }
  @if $width == default {
    $width: 1px;
  }
  border: 0 solid $color;
  @if $direction == top {
    border-top-width: $width;
  }
  @if $direction == right {
    border-right-width: $width;
  }
  @if $direction == bottom {
    border-bottom-width: $width;
  }
  @if $direction == left {
    border-left-width: $width;
  }
}

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
jekyll-text-theme-fork-2.2.6 _sass/common/classes/_split-line.scss
jekyll-text-theme-2.2.6 _sass/common/classes/_split-line.scss
jekyll-text-theme-2.2.5 _sass/common/classes/_split-line.scss