フォントサイズと行の高さのミックスインを少なくしようとしていますが、実行しようとするとエラーが発生します。誰かが私がこれでどこで間違っているかもしれないかアドバイスできますか?
.font( @size: 1.6, @line: @size * 1.5 ){
@fontSizeRem: @size;
@fontSizePx: ( @size * 10 );
@lineHeightRem: @line;
@lineHeightPx: ( @line * 10 );
font-size: ~"@{fontSizePx}px";
font-size: ~"@{fontSizeRem}rem";
line-height: ~"@{lineHeightPx}px";
line-height: ~"@{lineHeightRem}rem";
}
h1{
.font(1.6);
}