To convert px to em or rem you can use the following function:
@function rem-calc($size, $font-size : $font-size) {
$font-size: $font-size + 0px;
$remSize: $size / $font-size;
@return #{$remSize}rem;
}
@function em-calc($size, $font-size : $font-size) {
$font-size: $font-siz...