Skip to content

Instantly share code, notes, and snippets.

@zanonnicola
Created January 9, 2015 10:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zanonnicola/6d2a304ae80a41c22156 to your computer and use it in GitHub Desktop.
Save zanonnicola/6d2a304ae80a41c22156 to your computer and use it in GitHub Desktop.
Helpful mixins: - REM
@function countRem($value) {
$remValue: $value / 16px;
@return $remValue * 1rem;
}
@mixin font-size($value) {
font-size: $value;
font-size: calculateRem($value);
}
h1 { @include font-size(24px); }
/* ----------- */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment