brouilleursdeblanc/_sass/vendor/bourbon/functions/_strip-units.scss
Michael Rose aadb22ffcf Cleanup stylesheets
- Add Bourbon and Neat
2014-09-04 14:48:52 -04:00

5 lines
118 B
SCSS

// Srtips the units from a value. e.g. 12px -> 12
@function strip-units($val) {
@return ($val / ($val * 0 + 1));
}