5 lines
89 B
SCSS
5 lines
89 B
SCSS
|
// px to rem
|
||
|
@function calculateRem($size) {
|
||
|
@return $size / $body-font-size * 1rem;
|
||
|
}
|