mirror of
https://github.com/kidoman/embd
synced 2025-07-04 04:17:41 +02:00
7 lines
134 B
SCSS
7 lines
134 B
SCSS
|
|
// Make line-height equal to an element's height
|
|
|
|
@mixin line-and-height($height) {
|
|
height: $height;
|
|
line-height: $height - 2;
|
|
}
|