mirror of
https://github.com/kidoman/embd
synced 2025-03-06 16:21:22 +01:00
8 lines
134 B
SCSS
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;
|
|
}
|