Skip to content

Instantly share code, notes, and snippets.

@haroldao
Created July 9, 2021 16:02
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 haroldao/5f22a925a9764bc090a000d14ac9722e to your computer and use it in GitHub Desktop.
Save haroldao/5f22a925a9764bc090a000d14ac9722e to your computer and use it in GitHub Desktop.
px to em/rem | SCSS
// Source: https://css-tricks.com/snippets/sass/px-to-em-functions/
@function rem($pixels, $context: 16) {
@return (math.div($pixels, $context)) * 1rem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment