kaniosrn-j
10/31/2017 - 11:57 AM

Convert px to rem

set a var like $bodyFontSize: 16px;

@function em($px, $base: $bodyFontSize) {
 @return ($px / $base) * 1em;
}
then to set height in px but have it spit out EM:

.box {
  background: red;
  width: em(100px); 
  height: em(100px);
}