6 lines
115 B
SCSS
6 lines
115 B
SCSS
@use "sass:math";
|
|
|
|
// Convert pixel to rem
|
|
@function convert($size) {
|
|
@return (math.div($size, 16px)) * 1rem;
|
|
} |