mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
8 lines
245 B
SCSS
8 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;
|
|
}
|
|
}
|