cssinjs / css-functions

JavaScript utility functions for CSSinJS to build CSS functions.
74 stars 9 forks source link

scale doesn't work with one arg. #16

Closed trusktr closed 5 years ago

trusktr commented 5 years ago

CSS scale accepts either one arg or two args, but the current one here doesn't work with one arg. See MDN syntax.

If we do scale(2) it outputs "scale(2,)" with the extra comma, which trips the CSS engine.

trusktr commented 5 years ago

I made a PR: https://github.com/cssinjs/css-functions/pull/17

HenriBeck commented 5 years ago

Merged. Thanks 👍