Varia: Fix CSS interpolation issue in password-strength-meter style
@@ -6,7 +6,7 @@ body[class*="woocommerce"] #page { // adding #page here to override default wc s
.woocommerce-password-strength {
text-align: center;
font-weight: 600;
- padding: #{0.5 * #{map-deep-get($config-woocommerce, "table", "padding")}};
+ padding: (0.5 * map-deep-get($config-woocommerce, "table", "padding"));
font-size: map-deep-get($config-global, "font", "size", "sm");
&.strong {
@@ -401,7 +401,7 @@ body[class*="woocommerce"] #page .woocommerce-warning:before {
body[class*="woocommerce"] #page .woocommerce-password-strength {
- padding: 0.5 * 16px;
+ padding: 8px;
font-size: 0.83333rem;
}