mirror of
https://github.com/moparisthebest/mail
synced 2024-11-10 19:25:03 -05:00
7 lines
195 B
SCSS
Executable File
7 lines
195 B
SCSS
Executable File
@function strip-units($number) {
|
|
@return $number / ($number * 0 + 1);
|
|
}
|
|
|
|
@function em($target, $context: $font-size-base) {
|
|
@return (strip-units($target) / strip-units($context)) * 1em;
|
|
} |