blob: 6afc6e601c03c67148cf0ec39e4bd11f7ae23d7a [file] [log] [blame]
// Srtips the units from a value. e.g. 12px -> 12
@function strip-units($val) {
@return ($val / ($val * 0 + 1));
}