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.204 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.203 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.202 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.201 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.200 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.199 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.198 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.197 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.196 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.195 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.194 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
bourbon-4.1.0.pre app/assets/stylesheets/functions/_px-to-rem.scss
smock-0.1.193 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.192 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.191 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.190 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.189 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.188 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.187 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss
smock-0.1.186 app/assets/stylesheets/thirdparty/bourbon/functions/_px-to-rem.scss