Skip to content

Instantly share code, notes, and snippets.

@alyssawilliams
Created September 28, 2019 16:57
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 alyssawilliams/37c19a86e33fba5f8477e3ea158e67ab to your computer and use it in GitHub Desktop.
Save alyssawilliams/37c19a86e33fba5f8477e3ea158e67ab to your computer and use it in GitHub Desktop.
Sass function that converts pixels to rem
@function rem($pixels, $base: 16) {
@return #{$pixels/$base}rem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment