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/0e856ca695a5deada2b904fd88c71c9e to your computer and use it in GitHub Desktop.
Save alyssawilliams/0e856ca695a5deada2b904fd88c71c9e to your computer and use it in GitHub Desktop.
Sass function that converts a pixel based line height into a unitless value
@function unitless($font-size, $line-height) {
@return $line-height / $font-size;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment