mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00: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;
|
|
}
|