Sha256: 865bd3217831b22c481b1e83b9141fa22fd8650fe31c7171fd494a8483b398f9

Contents?: true

Size: 531 Bytes

Versions: 3

Compression:

Stored size: 531 Bytes

Contents

//////////////////////////////
// Find gutter style
//
// Finds the gutter style that you are working with.
// From Singularity
// Must be using Breakpoint to work properly
//////////////////////////////
@function find-gutter-style($user-gutter-style: false) {

  // We supply a default if the user hasn't set any gutter style and hasn't passed in a custom gutter
  @if length($gutter-styles) == 0 and $user-gutter-style == false {
    $user-gutter-style: opposite;
  }

  @return find-object($gutter-styles, $user-gutter-style);
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
singularitygs-1.1.2 stylesheets/singularitygs/gutter-styles/_find.scss
singularitygs-1.1.1 stylesheets/singularitygs/gutter-styles/_find.scss
singularitygs-1.1.0 stylesheets/singularitygs/gutter-styles/_find.scss