mirror of
https://github.com/kidoman/embd
synced 2025-02-10 12:43:18 +01:00
12 lines
269 B
SCSS
Executable File
12 lines
269 B
SCSS
Executable File
// Convert pixels to ems
|
|
|
|
@function em($size-in-px, $context: 16) {
|
|
@if not unitless($size-in-px) {
|
|
$size-in-px: strip-units($size-in-px);
|
|
}
|
|
@if not unitless($context) {
|
|
$context: strip-units($context);
|
|
}
|
|
@return ($size-in-px / $context) * 1em;
|
|
}
|