UnitexGramLab/unitexgramlab-org

View on GitHub
themes/unitexgramlab/sass/libs/bourbon/helpers/_shape-size-stripper.scss

Summary

Maintainability
Test Coverage
@function _shape-size-stripper($shape-size) {
  $shape-size-spec: null;
  @each $value in $shape-size {
    @if ($value == "cover") or ($value == "contain") {
      $value: null;
    }
    $shape-size-spec: "#{$shape-size-spec} #{$value}";
  }
  @return $shape-size-spec;
}