Tobias Lindig
Results
1
issues of
Tobias Lindig
following results in unexpected code: ``` textarea { background-image: linear-gradient(var(--primary-color, #ff5722), var(--primary-color, #ffff22)); } ``` results in: ``` textarea { background-image: linear-gradient(#ff5722), var(--primary-color, #ffff22); } ``` but should: ``` textarea...
bug