Skip to content

Instantly share code, notes, and snippets.

@JoeCianflone
Created January 17, 2016 22:30
Show Gist options
  • Save JoeCianflone/797b69817c499c9ed313 to your computer and use it in GitHub Desktop.
Save JoeCianflone/797b69817c499c9ed313 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.3.2)
// ----
@function get-line-height($font-size, $line-height) {
@return $line-height / $font-size;
}
.foo {
font-size: 22px;
line-height: get-line-height(22px, 32px);
}
.foo {
font-size: 22px;
line-height: 1.45455;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment