mirror of
https://github.com/Xevion/old.xevion.github.io.git
synced 2025-12-06 13:15:39 -06:00
11 lines
274 B
SCSS
11 lines
274 B
SCSS
@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;
|
|
}
|