Skip to content

Instantly share code, notes, and snippets.

@greylabel
Created October 16, 2013 15:10
Show Gist options
  • Save greylabel/7009259 to your computer and use it in GitHub Desktop.
Save greylabel/7009259 to your computer and use it in GitHub Desktop.
height-lineheight.scss
/**
* @mixin height-lineheight($height)
*
* Allows single-line vertical centering of text
*
* @param: $height
* height of element, text will centern vertically within
*/
@mixin height-lineheight($height){
height: $height;
line-height: $height;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment