Sha256: 6735a43675469a2a8101bee45976a7a77d664e0fdb322c1404c271ff64024852

Contents?: true

Size: 340 Bytes

Versions: 346

Compression:

Stored size: 340 Bytes

Contents

// Convert pixels to rems
// eg. for a relational value of 12px write rem(12)
// Assumes $em-base is the font-size of <html>

@function rem($pxval) {
  @if not unitless($pxval) {
      $pxval: strip-units($pxval);
  }

  $base: $em-base;
  @if not unitless($base) {
      $base: strip-units($base);
  }
  @return ($pxval / $base) * 1rem;
}

Version data entries

346 entries across 338 versions & 11 rubygems

Version Path
smock-0.1.185 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.184 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.182 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.181 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.180 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.179 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.178 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.177 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.176 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.175 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.170 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.169 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.168 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.167 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.166 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.165 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.164 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.163 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.162 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.161 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss