Forked from Manuel Ryan Espinosa's Pen Rem and Px Mixin for Sass.
A Pen by Jeong Inyoung on CodePen.
| <p>Testing</p> |
Forked from Manuel Ryan Espinosa's Pen Rem and Px Mixin for Sass.
A Pen by Jeong Inyoung on CodePen.
| @function calculateRem($size) { | |
| $remSize: $size / 16px; | |
| @return $remSize * 1rem; | |
| // or @return #{$remSize}rem | |
| } | |
| @mixin font-size($size) { | |
| font-size: $size; | |
| font-size: calculateRem($size); | |
| } | |
| p { | |
| @include font-size(14px) | |
| } |