Sha256: 79aaf7014f6474e7d482923722636f0e8fb52cf2cd2cfbf454a3114c41ad6729
Contents?: true
Size: 534 Bytes
Versions: 15
Compression:
Stored size: 534 Bytes
Contents
@charset "UTF-8"; /// Strips the unit from a number. /// /// @param {Number (With Unit)} $value /// /// @example scss - Usage /// $dimension: strip-units(10em); /// /// @example css - CSS Output /// $dimension: 10; /// /// @return {Number (Unitless)} @function strip-units($value) { @if $output-bourbon-deprecation-warnings == true { @warn "[Bourbon] [Deprecation] `strip-units` is deprecated and will be " + "removed in 5.0.0 and replaced by the `strip-unit` function."; } @return ($value / ($value * 0 + 1)); }
Version data entries
15 entries across 15 versions & 5 rubygems