I just want to implement a basic mixin for the transitions, this is my code:
transition()
transition arguments
-webkit-transition arguments
Until i use this mixin with a single property all is working fine, but when i try to do something like this:
a
transition(color 1s, text-shadow 1s)
My output is:
a {
transition: color 1s text-shadow 1s;
-webkit-transition: color 1s text-shadow 1s;
}
no commas are added... any suggestions?