6 lines
89 B
SCSS
6 lines
89 B
SCSS
// get rem from pixels
|
|
|
|
@function get_rem($px) {
|
|
@return calc($px / 16 * 1rem);
|
|
}
|