1
0
mirror of https://github.com/kidoman/embd synced 2025-02-11 05:03:18 +01:00
embd/bower_components/gumby/sass/functions/_line-and-height.scss

8 lines
134 B
SCSS
Raw Normal View History

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