mirror of
https://github.com/kidoman/embd
synced 2025-02-11 05:03:18 +01:00
6 lines
116 B
SCSS
6 lines
116 B
SCSS
|
|
// Strip out units to do math functions.
|
|
@function strip-units($number) {
|
|
@return $number / ($number * 0 + 1);
|
|
}
|