mirror of
https://github.com/kidoman/embd
synced 2025-02-11 05:03:18 +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;
|
|
}
|