woocommerce-paypal-payments/modules/ppcp-settings/resources/css/_mixins.scss

9 lines
245 B
SCSS
Raw Normal View History

2024-10-23 08:56:47 +02:00
@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;
}
}