Skip to content
This repository was archived by the owner on Sep 29, 2024. It is now read-only.

Commit 09ebc15

Browse files
Wildhoneyjonathantneal
authored andcommitted
Fix add method
1 parent bb9d41d commit 09ebc15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/CSSNumericValue.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default class CSSNumericValue {
1616
if (values.length || result.unit !== arg.unit) {
1717
values.push(arg)
1818
} else {
19-
result.value -= arg.value
19+
result.value += arg.value
2020
}
2121
} else if (
2222
arg instanceof CSSMathProduct ||

0 commit comments

Comments
 (0)