Skip to content

Instantly share code, notes, and snippets.

@sundaycrafts
Created May 28, 2015 09:05
Show Gist options
  • Save sundaycrafts/16dc099f90f30b4a9352 to your computer and use it in GitHub Desktop.
Save sundaycrafts/16dc099f90f30b4a9352 to your computer and use it in GitHub Desktop.
sass: getLineHeight function
$FontSize: 14px;
$LineHeight: $FontSize * 1.5;
@function getLineHeight($fontSize) {
$height: $LineHeight;
@while $height < $fontSize {
$height: $height + $height;
}
@return $height;
}
//usage
p.para {
font-size: $FontSize;
line-height: getLineHieight($FontSize);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment