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.160 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.159 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.158 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.153 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
wrgem-0.0.43 lib/generators/wrstart/template/vendor/assets/components/bourbon/dist/functions/_px-to-rem.scss
smock-0.1.152 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.151 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.150 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.149 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.148 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.147 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.146 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.145 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.144 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.143 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.142 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.141 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.140 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.139 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.138 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss