a1exlism
12/25/2017 - 6:40 AM

SCSS_if_condition

@mixin clearfix($width: 'auto') {

  @if $width == 'auto' {

    // if width is not passed, or empty do this

  } @else {

    display: inline-block;
    width: $width;

  }
}