Update Ember to 3.1
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
@function _shape-size-stripper($shape-size) {
|
||||
@if $output-bourbon-deprecation-warnings == true {
|
||||
@warn "[Bourbon] [Deprecation] `_shape-size-stripper` is " +
|
||||
"deprecated and will be removed in 5.0.0.";
|
||||
}
|
||||
|
||||
$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;
|
||||
}
|
||||
Reference in New Issue
Block a user