mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
9 lines
245 B
SCSS
9 lines
245 B
SCSS
|
@mixin font($font-size, $line-height, $font-weight, $letter-spacing: false) {
|
||
|
font-size: $font-size + px;
|
||
|
line-height: calc($line-height / $font-size);
|
||
|
font-weight: $font-weight;
|
||
|
@if $letter-spacing {
|
||
|
letter-spacing: $letter-spacing;
|
||
|
}
|
||
|
}
|