_is-length.scss 314 B

1234567891011
  1. @charset "UTF-8";
  2. /// Checks for a valid CSS length.
  3. ///
  4. /// @param {String} $value
  5. @function is-length($value) {
  6. @return type-of($value) != "null" and (str-slice($value + "", 1, 4) == "calc"
  7. or index(auto inherit initial 0, $value)
  8. or (type-of($value) == "number" and not(unitless($value))));
  9. }