mirror of
https://github.com/kidoman/embd
synced 2025-04-18 07:58:29 +02: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;
|
|
}
|