mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-22 17:30:00 +00:00
12 lines
221 B
SCSS
12 lines
221 B
SCSS
@function pxToRem($pixels, $context: $browser-context) {
|
|
@if (unitless($pixels)) {
|
|
$pixels: $pixels * 1px;
|
|
}
|
|
|
|
@if (unitless($context)) {
|
|
$context: $context * 1px;
|
|
}
|
|
|
|
@return $pixels / $context * 1rem;
|
|
}
|