pebble/third_party/bourbon/functions/_strip-units.scss
2025-02-24 18:58:29 -08: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));
}