1
0
mirror of https://github.com/kidoman/embd synced 2024-06-01 16:48:06 +02:00
embd/bower_components/gumby/sass/functions/_line-and-height.scss

8 lines
134 B
SCSS
Raw Normal View History

2014-03-31 03:03:08 +02:00
// Make line-height equal to an element's height
@mixin line-and-height($height) {
height: $height;
line-height: $height - 2;
}