1
0
mirror of https://github.com/kidoman/embd synced 2025-02-10 20:53:20 +01:00
embd/bower_components/gumby/sass/functions/_line-and-height.scss
2014-03-31 06:33:08 +05:30

8 lines
134 B
SCSS

// Make line-height equal to an element's height
@mixin line-and-height($height) {
height: $height;
line-height: $height - 2;
}