SASSでpxからrem変換
kurumin
@function rem($px, $digit: 2) {
$n: 1;
@for $i from 1 through $digit {
$n: $n * 10;
}
@return round(($px / 16) * $n) / $n * 1rem;
}
ABOUT ME
@function rem($px, $digit: 2) {
$n: 1;
@for $i from 1 through $digit {
$n: $n * 10;
}
@return round(($px / 16) * $n) / $n * 1rem;
}