mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-12 20:06:39 -05:00
8 lines
157 B
SCSS
Vendored
8 lines
157 B
SCSS
Vendored
//
|
|
// Stripe the units from a value
|
|
//
|
|
// Usage example: strip-unit(25px) => 25
|
|
//
|
|
@function strip-unit($value) {
|
|
@return ($value / ($value * 0 + 1));
|
|
}
|