Update Ember to 3.1
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
@charset "UTF-8";
|
||||
|
||||
/// Checks for a valid CSS size.
|
||||
///
|
||||
/// @param {String} $value
|
||||
///
|
||||
/// @require {function} contains
|
||||
/// @require {function} is-length
|
||||
|
||||
@function is-size($value) {
|
||||
@if $output-bourbon-deprecation-warnings == true {
|
||||
@warn "[Bourbon] [Deprecation] `is-size` is deprecated and will be " +
|
||||
"removed in 5.0.0.";
|
||||
}
|
||||
|
||||
@return is-length($value)
|
||||
or contains("fill" "fit-content" "min-content" "max-content", $value);
|
||||
}
|
||||
Reference in New Issue
Block a user