grav-theme-libretic/scss/vendor/bourbon/functions/_strip-units.scss

6 lines
118 B
SCSS
Raw Normal View History

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